mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-03-30 17:03:39 +08:00
fix($location): return '/' for root path in hashbang mode
Before this change, on the root of the application, $location.path() would return the empty string. Following this change, it will always return a root of '/'. Closes #5650 Closes #5712
This commit is contained in:
committed by
Igor Minar
parent
69452fa94f
commit
63cd873fef
@@ -184,6 +184,10 @@ function LocationHashbangUrl(appBase, hashPrefix) {
|
||||
|
||||
this.$$compose();
|
||||
|
||||
if (!this.$$path) {
|
||||
this.$$path = '/';
|
||||
}
|
||||
|
||||
/*
|
||||
* In Windows, on an anchor node on documents loaded from
|
||||
* the filesystem, the browser will return a pathname
|
||||
|
||||
@@ -1487,6 +1487,16 @@ describe('$location', function() {
|
||||
expect(location.url()).toBe('/not-starting-with-slash');
|
||||
expect(location.absUrl()).toBe('http://server/pre/index.html#/not-starting-with-slash');
|
||||
});
|
||||
|
||||
|
||||
it("should return / for path for the application root path", function() {
|
||||
location = new LocationHashbangUrl('http://server/pre/index.html', '#');
|
||||
location.$$parse('http://server/pre/index.html');
|
||||
expect(location.path()).toBe('/');
|
||||
|
||||
location.$$parse('http://server/pre/');
|
||||
expect(location.path()).toBe('/');
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user