fix(Router): Query strings are copied for HashLocationStrategy

b/27210802 P1

Closes #7298
This commit is contained in:
Misko Hevery
2016-02-25 16:18:55 -08:00
committed by Miško Hevery
parent ebd438ff5e
commit b47f80ec76
4 changed files with 30 additions and 6 deletions

View File

@ -13,5 +13,7 @@ class SpyRouter extends SpyObject implements Router {}
class SpyRouterOutlet extends SpyObject implements RouterOutlet {}
class SpyPlatformLocation extends SpyObject implements PlatformLocation {
String pathname;
String pathname = null;
String search = null;
String hash = null;
}