fix(aio): prefix `location.assign` with `window.`

No practical effect but clears the TS compiler warning.
This commit is contained in:
Ward Bell 2017-06-21 12:22:10 -07:00 committed by Matias Niemelä
parent 14d2de13bb
commit 3ce9d51a9c
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ export class LocationService {
}
goExternal(url: string) {
location.assign(url);
window.location.assign(url);
}
private stripSlashes(url: string) {