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
Loading mr's bootstrap.js and consequently bluebird.min.js overrides the global Promise object. I would think that this is a unintended side-effect of Mr?
Yes I know that Bluebird is well-tested and compatible with the native implementations, but I this introduces a unnecessary dependency for all my code. What if a future version of Bluebird contains an error?
It seems to be easy to fix by appending .noConflict():
// file: bootstrap.js, line 181
function allModulesLoaded() {
Promise = bootRequire("promise").noConflict();
// ..
The text was updated successfully, but these errors were encountered:
Loading mr's
bootstrap.js
and consequentlybluebird.min.js
overrides the globalPromise
object. I would think that this is a unintended side-effect of Mr?Yes I know that Bluebird is well-tested and compatible with the native implementations, but I this introduces a unnecessary dependency for all my code. What if a future version of Bluebird contains an error?
It seems to be easy to fix by appending
.noConflict()
:The text was updated successfully, but these errors were encountered: