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

View File

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