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
In the case that the url fails to load from an async! call, it appears that it blocks the entire page from loading. Shouldn't the onLoad function be called if the module times out?
The text was updated successfully, but these errors were encountered:
error callbacks only works with async require: http://requirejs.org/docs/api.html#errbacks - so the "best thing" is not to list it as a "hard dependency" (if it might fail).
Ah, that's the problem then. I want to have the capability of a module depending on a script via async!, but not block the application from loading if that async fails.
In the case that the url fails to load from an
async!
call, it appears that it blocks the entire page from loading. Shouldn't the onLoad function be called if the module times out?The text was updated successfully, but these errors were encountered: