mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 06:55:08 -04:00
Move tab logic into a new TabWaiter
This commit is contained in:
parent
98af95a6ce
commit
c2087f6d5f
10 changed files with 523 additions and 462 deletions
|
@ -16,6 +16,7 @@ import HighlighterWaiter from "./waiters/HighlighterWaiter";
|
|||
import SeasonalWaiter from "./waiters/SeasonalWaiter";
|
||||
import BindingsWaiter from "./waiters/BindingsWaiter";
|
||||
import BackgroundWorkerWaiter from "./waiters/BackgroundWorkerWaiter";
|
||||
import TabWaiter from "./waiters/TabWaiter";
|
||||
|
||||
|
||||
/**
|
||||
|
@ -70,6 +71,7 @@ class Manager {
|
|||
this.seasonal = new SeasonalWaiter(this.app, this);
|
||||
this.bindings = new BindingsWaiter(this.app, this);
|
||||
this.background = new BackgroundWorkerWaiter(this.app, this);
|
||||
this.tabs = new TabWaiter(this.app, this);
|
||||
|
||||
// Object to store dynamic handlers to fire on elements that may not exist yet
|
||||
this.dynamicHandlers = {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue