Skip to content

Commit 20e7716

Browse files
author
chrismilleruk
committedAug 8, 2012
Merge pull request #2 from rhodblinkbox/html5HistorySwitch
add ability to disable html history functionality in the browser service
2 parents a05e445 + 02094ef commit 20e7716

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed
 

‎src/ng/browser.js

+13-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ function Browser(window, document, $log, $sniffer) {
2929
history = window.history,
3030
setTimeout = window.setTimeout,
3131
clearTimeout = window.clearTimeout,
32-
pendingDeferIds = {};
32+
pendingDeferIds = {},
33+
useHtml5HistoryMode = false;
3334

3435
self.isMock = false;
3536

@@ -151,7 +152,7 @@ function Browser(window, document, $log, $sniffer) {
151152
if (url) {
152153
if (lastBrowserUrl == url) return;
153154
lastBrowserUrl = url;
154-
if ($sniffer.history) {
155+
if ($sniffer.history && useHtml5HistoryMode) {
155156
if (replace) history.replaceState(null, '', url);
156157
else {
157158
history.pushState(null, '', url);
@@ -212,7 +213,7 @@ function Browser(window, document, $log, $sniffer) {
212213
// changed by push/replaceState
213214

214215
// html5 history api - popstate event
215-
if ($sniffer.history) jqLite(window).bind('popstate', fireUrlChange);
216+
if ($sniffer.history && useHtml5HistoryMode) jqLite(window).bind('popstate', fireUrlChange);
216217
// hashchange event
217218
if ($sniffer.hashchange) jqLite(window).bind('hashchange', fireUrlChange);
218219
// polling
@@ -352,6 +353,15 @@ function Browser(window, document, $log, $sniffer) {
352353
return false;
353354
};
354355

356+
self.html5HistoryMode = function(mode) {
357+
if (isDefined(mode)) {
358+
useHtml5HistoryMode = mode;
359+
return this;
360+
} else {
361+
return useHtml5HistoryMode;
362+
}
363+
};
364+
355365
}
356366

357367
function $BrowserProvider(){

‎src/ng/location.js

+3
Original file line numberDiff line numberDiff line change
@@ -514,6 +514,9 @@ function $LocationProvider(){
514514
initUrlParts = matchUrl(initUrl),
515515
appBaseUrl;
516516

517+
// Apply the html5Mode setting to the $browser service
518+
$browser.html5HistoryMode(html5Mode);
519+
517520
if (html5Mode) {
518521
basePath = $browser.baseHref() || '/';
519522
pathPrefix = pathPrefixFromBase(basePath);

0 commit comments

Comments
 (0)
Please sign in to comment.