mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
fix(location): dartium does not like pushState with null.
According to https://developer.mozilla.org/en-US/docs/Web/Guide/API/DOM/Manipulating_the_browser_history the value of the title parameter is irrelevant anyways.
This commit is contained in:
parent
01d5c29513
commit
c2a42d5d2b
2 changed files with 3 additions and 3 deletions
2
modules/angular2/src/router/location.js
vendored
2
modules/angular2/src/router/location.js
vendored
|
|
@ -36,7 +36,7 @@ export class Location {
|
|||
|
||||
go(url:string) {
|
||||
url = this._stripBaseHref(url);
|
||||
this._browserLocation.pushState(null, null, url);
|
||||
this._browserLocation.pushState(null, '', url);
|
||||
}
|
||||
|
||||
forward() {
|
||||
|
|
|
|||
|
|
@ -27,14 +27,14 @@ export function main() {
|
|||
|
||||
it('should normalize urls on navigate', () => {
|
||||
location.go('/my/app/user/btford');
|
||||
expect(browserLocation.spy('pushState')).toHaveBeenCalledWith(null, null, '/user/btford');
|
||||
expect(browserLocation.spy('pushState')).toHaveBeenCalledWith(null, '', '/user/btford');
|
||||
});
|
||||
|
||||
it('should remove index.html from base href', () => {
|
||||
browserLocation.baseHref = '/my/app/index.html';
|
||||
location = new Location(browserLocation);
|
||||
location.go('/my/app/user/btford');
|
||||
expect(browserLocation.spy('pushState')).toHaveBeenCalledWith(null, null, '/user/btford');
|
||||
expect(browserLocation.spy('pushState')).toHaveBeenCalledWith(null, '', '/user/btford');
|
||||
});
|
||||
|
||||
it('should normalize urls on popstate', inject([AsyncTestCompleter], (async) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue