diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2019-02-20 11:42:19 +0900 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-02-19 21:42:19 -0500 |
commit | c4e37285758ff4cc5d388db2d880ed91decb3d29 (patch) | |
tree | 0c4f813da45a6407359ea739d0cd9b06af138d8e /js/location.ts | |
parent | a5720d9e28f7ee5868049504816405392c2821d7 (diff) |
remove global_eval.ts (#1813)
Diffstat (limited to 'js/location.ts')
-rw-r--r-- | js/location.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/location.ts b/js/location.ts index 5e7cb07b4..5d7f44707 100644 --- a/js/location.ts +++ b/js/location.ts @@ -2,7 +2,7 @@ import { URL } from "./url"; import { notImplemented } from "./util"; import { Location } from "./dom_types"; -import { window } from "./globals"; +import { window } from "./window"; export function setLocation(url: string): void { window.location = new LocationImpl(url); |