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
|
/* windowman
|
||||||
Window and window content management */
|
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 net from "/scripts/utils/net.js";
|
||||||
import Window from "./window.js";
|
import Window from "../window.js";
|
||||||
|
|
||||||
export default class windowman {
|
export default class windowman {
|
||||||
static new(URL, height, width) {
|
static new(URL, height, width) {
|
||||||
|
@ -390,7 +390,7 @@ export default class windowman {
|
||||||
|
|
||||||
/* Enable the searching interface. */
|
/* Enable the searching interface. */
|
||||||
async function search() {
|
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());
|
return (search_GUI_manager.Search());
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
Construct an internal page.
|
Construct an internal page.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import windowman from "/scripts/GUI/windowman.js";
|
import windowman from "/scripts/GUI/builder/windowman.js";
|
||||||
|
|
||||||
export default class Page {
|
export default class Page {
|
||||||
constructor () {
|
constructor () {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue