diff --git a/gui/popup.htm b/gui/popup.htm index 09e22a8..f31b5c2 100644 --- a/gui/popup.htm +++ b/gui/popup.htm @@ -1,3 +1,4 @@ + - + diff --git a/gui/scripts/popup.js b/gui/scripts/popup.js index d12f86b..587606e 100644 --- a/gui/scripts/popup.js +++ b/gui/scripts/popup.js @@ -1,12 +1,16 @@ +/* Popup.js + Build the interface for popup +*/ + +// Import modules. +import compat from "./compat.js"; +import texts from "./read.JS"; // Call the main function. function main() { - + } -/* Run detection */ -import {restrict} from "./compat.js"; - -if (!restrict()) { +if (compat.restrict()) { main(); }