Move UI components to ui/ directory

This commit is contained in:
hensm
2019-04-09 01:11:24 +01:00
parent a6ebb4fd22
commit 56ec766d86
22 changed files with 19 additions and 15 deletions

View File

@@ -2,7 +2,7 @@
import getBridgeInfo from "./lib/getBridgeInfo";
import messageRouter from "./lib/messageRouter";
import defaultOptions, { Options } from "./options/defaultOptions";
import defaultOptions, { Options } from "./defaultOptions";
import { getChromeUserAgent } from "./lib/userAgents";
import { getWindowCenteredProps } from "./lib/utils";
@@ -365,7 +365,7 @@ async function openPopup (shimId: string) {
const centeredProps = getWindowCenteredProps(win, 350, 200);
const popup = await browser.windows.create({
url: "popup/index.html"
url: "ui/popup/index.html"
, type: "popup"
, ...centeredProps
});