You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This arose from the naming of the callback event, "plugins:ready" - which suggests that the plugins are ready, singularly.
This mechanism is actually to stop adapt performing long blocking operations on initialization and navigation. Providing an interface to force Adapt to wait for asynchronous operations to take place before proceeding.
Adapt.wait.isWaiting();// Increments count for waiting queueAdapt.wait.begin();// Decrements count for waiting queueAdapt.wait.end();// Resolve asynchronously when the queue count is brought back to 0Adapt.wait.queue(function(){});// Performs, begin, callback and endAdapt.wait.for(function(end){end();});
The text was updated successfully, but these errors were encountered:
This arose from the naming of the callback event, "plugins:ready" - which suggests that the plugins are ready, singularly.
This mechanism is actually to stop adapt performing long blocking operations on initialization and navigation. Providing an interface to force Adapt to wait for asynchronous operations to take place before proceeding.
This idea is to turn:
Into:
Also included are:
The text was updated successfully, but these errors were encountered: