We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f312d6 commit 844a540Copy full SHA for 844a540
src/core/util/env.js
@@ -99,13 +99,13 @@ export const nextTick = (function () {
99
// "force" the microtask queue to be flushed by adding an empty timer.
100
if (isIOS) setTimeout(noop)
101
}
102
- } else if (typeof MutationObserver !== 'undefined' && (
+ } else if (!isIE && typeof MutationObserver !== 'undefined' && (
103
isNative(MutationObserver) ||
104
// PhantomJS and iOS 7.x
105
MutationObserver.toString() === '[object MutationObserverConstructor]'
106
)) {
107
// use MutationObserver where native Promise is not available,
108
- // e.g. PhantomJS IE11, iOS7, Android 4.4
+ // e.g. PhantomJS, iOS7, Android 4.4
109
var counter = 1
110
var observer = new MutationObserver(nextTickHandler)
111
var textNode = document.createTextNode(String(counter))
0 commit comments