Add queue processing & callbacks

This commit is contained in:
Dominik Reh
2023-01-28 23:28:15 +01:00
parent b70b0b72cb
commit d1d3cd2bf5
3 changed files with 34 additions and 4 deletions

View File

@@ -39,9 +39,9 @@ var umiPreviousTags = [];
/// Similar to a callback system, but primitive.
// Queues
var afterInsertQueue = [];
var afterSetupQueue = [];
var afterConfigChangeQueue = [];
const afterInsertQueue = [];
const afterSetupQueue = [];
const afterConfigChangeQueue = [];
// List of parsers to try
var parsers = [];
const parsers = [];