Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix($browser): prevent infinite $digest from no trailing slash in IE9 #11587

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions src/ng/browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,26 @@ function Browser(window, document, $log, $sniffer) {
cacheState();
lastHistoryState = cachedState;

/**
* @name $browser#forceReloadLocationUpdate
*
* @description
* This method is a setter.
*
* If the reloadLocation variable is already set, it will be reset to
* the passed-in URL.
*
* NOTE: this api is intended for use only by the $location service in the
* $locationWatch function.
*
* @param {string} url New url
*/
self.forceReloadLocationUpdate = function(url) {
if (reloadLocation) {
reloadLocation = url;
}
};

/**
* @name $browser#url
*
Expand Down
13 changes: 12 additions & 1 deletion src/ng/location.js
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ function $LocationProvider() {
$browser.url($location.absUrl(), true);
}

var initializing = true;
var initializing = true, previousOldUrl = null, previousNewUrl = null;

// update $location when $browser url changes
$browser.onUrlChange(function(newUrl, newState) {
Expand Down Expand Up @@ -918,6 +918,14 @@ function $LocationProvider() {
$rootScope.$watch(function $locationWatch() {
var oldUrl = trimEmptyHash($browser.url());
var newUrl = trimEmptyHash($location.absUrl());
if ($location.$$html5 && !$sniffer.history &&
(previousOldUrl === oldUrl) && (previousNewUrl === newUrl)) {
// break out of infinite $digest loops caused by default routes in hashbang mode
$browser.forceReloadLocationUpdate(newUrl);
previousOldUrl = previousNewUrl = null;
return;
}
previousOldUrl = oldUrl, previousNewUrl = newUrl;
var oldState = $browser.state();
var currentReplace = $location.$$replace;
var urlOrStateChanged = oldUrl !== newUrl ||
Expand All @@ -944,6 +952,9 @@ function $LocationProvider() {
oldState === $location.$$state ? null : $location.$$state);
}
afterLocationChange(oldUrl, oldState);
//if ($location.$$html5 && $location.absUrl().indexOf("#") > -1 && $location.absUrl() !== $browser.url()) {
// $browser.forceReloadLocationUpdate($location.absUrl());
//}
}
});
}
Expand Down