We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd5ea73 commit 0e8af34Copy full SHA for 0e8af34
src/core/util/env.js
@@ -61,7 +61,7 @@ export const nextTick = (function () {
61
// "force" the microtask queue to be flushed by adding an empty timer.
62
if (isIOS) setTimeout(noop)
63
}
64
- } else if (typeof MutationObserver !== 'undefined') {
+ } else if (typeof MutationObserver !== 'undefined' && isNative(MutationObserver)) {
65
// use MutationObserver where native Promise is not available,
66
// e.g. IE11, iOS7, Android 4.4
67
var counter = 1
0 commit comments