Skip to content

Commit 844a540

Browse files
committed
fix: do not use MutationObserver in IE11
MutationObserver is unreliable in IE11. fix #6466
1 parent 6f312d6 commit 844a540

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/util/env.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,13 @@ export const nextTick = (function () {
9999
// "force" the microtask queue to be flushed by adding an empty timer.
100100
if (isIOS) setTimeout(noop)
101101
}
102-
} else if (typeof MutationObserver !== 'undefined' && (
102+
} else if (!isIE && typeof MutationObserver !== 'undefined' && (
103103
isNative(MutationObserver) ||
104104
// PhantomJS and iOS 7.x
105105
MutationObserver.toString() === '[object MutationObserverConstructor]'
106106
)) {
107107
// use MutationObserver where native Promise is not available,
108-
// e.g. PhantomJS IE11, iOS7, Android 4.4
108+
// e.g. PhantomJS, iOS7, Android 4.4
109109
var counter = 1
110110
var observer = new MutationObserver(nextTickHandler)
111111
var textNode = document.createTextNode(String(counter))

0 commit comments

Comments
 (0)