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

Commit ffb2701

Browse files
committed
fix(browser): prevent ie from getting into redirect loop
Closes #1075 Closes #1079 Closes #1085
1 parent 0d57f13 commit ffb2701

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

src/ng/browser.js

+1
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ function Browser(window, document, $log, $sniffer) {
149149
self.url = function(url, replace) {
150150
// setter
151151
if (url) {
152+
if (lastBrowserUrl == url) return;
152153
lastBrowserUrl = url;
153154
if ($sniffer.history) {
154155
if (replace) history.replaceState(null, '', url);

test/ng/browserSpecs.js

+8
Original file line numberDiff line numberDiff line change
@@ -468,6 +468,14 @@ describe('browser', function() {
468468
fakeWindow.location.href = "http://ff-bug/?single%27quote";
469469
expect(browser.url()).toBe("http://ff-bug/?single'quote");
470470
});
471+
472+
it('should not set URL when the URL is already set', function() {
473+
var current = fakeWindow.location.href;
474+
sniffer.history = false;
475+
fakeWindow.location.href = 'dontchange';
476+
browser.url(current);
477+
expect(fakeWindow.location.href).toBe('dontchange');
478+
});
471479
});
472480

473481
describe('urlChange', function() {

0 commit comments

Comments
 (0)