@@ -29,7 +29,8 @@ function Browser(window, document, $log, $sniffer) {
29
29
history = window . history ,
30
30
setTimeout = window . setTimeout ,
31
31
clearTimeout = window . clearTimeout ,
32
- pendingDeferIds = { } ;
32
+ pendingDeferIds = { } ,
33
+ useHtml5HistoryMode = false ;
33
34
34
35
self . isMock = false ;
35
36
@@ -151,7 +152,7 @@ function Browser(window, document, $log, $sniffer) {
151
152
if ( url ) {
152
153
if ( lastBrowserUrl == url ) return ;
153
154
lastBrowserUrl = url ;
154
- if ( $sniffer . history ) {
155
+ if ( $sniffer . history && useHtml5HistoryMode ) {
155
156
if ( replace ) history . replaceState ( null , '' , url ) ;
156
157
else {
157
158
history . pushState ( null , '' , url ) ;
@@ -212,7 +213,7 @@ function Browser(window, document, $log, $sniffer) {
212
213
// changed by push/replaceState
213
214
214
215
// html5 history api - popstate event
215
- if ( $sniffer . history ) jqLite ( window ) . bind ( 'popstate' , fireUrlChange ) ;
216
+ if ( $sniffer . history && useHtml5HistoryMode ) jqLite ( window ) . bind ( 'popstate' , fireUrlChange ) ;
216
217
// hashchange event
217
218
if ( $sniffer . hashchange ) jqLite ( window ) . bind ( 'hashchange' , fireUrlChange ) ;
218
219
// polling
@@ -352,6 +353,15 @@ function Browser(window, document, $log, $sniffer) {
352
353
return false ;
353
354
} ;
354
355
356
+ self . html5HistoryMode = function ( mode ) {
357
+ if ( isDefined ( mode ) ) {
358
+ useHtml5HistoryMode = mode ;
359
+ return this ;
360
+ } else {
361
+ return useHtml5HistoryMode ;
362
+ }
363
+ } ;
364
+
355
365
}
356
366
357
367
function $BrowserProvider ( ) {
0 commit comments