remove wrapper functions

This commit is contained in:
buzz-lightsnack-2007 2024-03-28 16:55:15 +08:00
parent 43e3f081ca
commit 6fab9502bb

View file

@ -6,20 +6,6 @@
import { windowman } from "../windowman.js"; import { windowman } from "../windowman.js";
let secretariat = await import(chrome.runtime.getURL("scripts/secretariat.js")); let secretariat = await import(chrome.runtime.getURL("scripts/secretariat.js"));
// Import configuration file.
// const config = chrome.runtime.getURL('gui/layouts/settings.json');
let pref_pane = 0;
function start() {
windowman.prepare();
}
/* Generate the appropriate strings. */
function say() {
windowman.fill();
}
/* /*
Arrange the interface. Arrange the interface.
*/ */
@ -53,14 +39,10 @@ function events() {
} }
function main() { function main() {
let tab = start(); let tab = windowman.prepare();
say(); windowman.fill();
events();
arrange(); arrange();
events();
/*arrange();
events();*/
} }
main(); main();