Added async ability to ignite callback and async to ready to help UI not freeze up.
This commit is contained in:
parent
02b7824ce0
commit
1fc825d990
@ -448,9 +448,9 @@ class IgniteCallback {
|
||||
this.detach = detach;
|
||||
}
|
||||
|
||||
invoke(...params) {
|
||||
async invoke(...params) {
|
||||
if (this.callback) {
|
||||
this.callback(...params);
|
||||
await this.callback(...params);
|
||||
}
|
||||
}
|
||||
|
||||
@ -516,8 +516,11 @@ class IgniteRenderingContext {
|
||||
|
||||
//Set a new timeout, it will only run once all elements are ready because
|
||||
//of the way single threaded timers work.
|
||||
IgniteRenderingContext.ReadyTimer = setTimeout(() => {
|
||||
IgniteRenderingContext.ReadyCallbacks.forEach((ready) => ready.invoke());
|
||||
IgniteRenderingContext.ReadyTimer = setTimeout(async () => {
|
||||
for (var i = 0; i < IgniteRenderingContext.ReadyCallbacks.length; i++) {
|
||||
IgniteRenderingContext.ReadyCallbacks[i].invoke();
|
||||
}
|
||||
|
||||
IgniteRenderingContext.ReadyCallbacks = [];
|
||||
IgniteRenderingContext.ReadyTimer = null;
|
||||
}, 1);
|
||||
|
Loading…
x
Reference in New Issue
Block a user