moved windowman to builder/windowman
This commit is contained in:
parent
4ff42ead0f
commit
6644a4d267
3 changed files with 4 additions and 4 deletions
|
@ -1,9 +1,9 @@
|
|||
/* windowman
|
||||
Window and window content management */
|
||||
|
||||
import texts from "../mapping/read.js";
|
||||
import texts from "../../mapping/read.js";
|
||||
import net from "/scripts/utils/net.js";
|
||||
import Window from "./window.js";
|
||||
import Window from "../window.js";
|
||||
|
||||
export default class windowman {
|
||||
static new(URL, height, width) {
|
||||
|
@ -390,7 +390,7 @@ export default class windowman {
|
|||
|
||||
/* Enable the searching interface. */
|
||||
async function search() {
|
||||
const search_GUI_manager = (await import(chrome.runtime.getURL(`scripts/GUI/windowman.search.js`))).default;
|
||||
const search_GUI_manager = (await import(chrome.runtime.getURL(`scripts/GUI/builder/windowman.search.js`))).default;
|
||||
return (search_GUI_manager.Search());
|
||||
};
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
Construct an internal page.
|
||||
*/
|
||||
|
||||
import windowman from "/scripts/GUI/windowman.js";
|
||||
import windowman from "/scripts/GUI/builder/windowman.js";
|
||||
|
||||
export default class Page {
|
||||
constructor () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue