File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -99,13 +99,13 @@ export const nextTick = (function () {
99
99
// "force" the microtask queue to be flushed by adding an empty timer.
100
100
if ( isIOS ) setTimeout ( noop )
101
101
}
102
- } else if ( typeof MutationObserver !== 'undefined' && (
102
+ } else if ( ! isIE && typeof MutationObserver !== 'undefined' && (
103
103
isNative ( MutationObserver ) ||
104
104
// PhantomJS and iOS 7.x
105
105
MutationObserver . toString ( ) === '[object MutationObserverConstructor]'
106
106
) ) {
107
107
// 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
109
109
var counter = 1
110
110
var observer = new MutationObserver ( nextTickHandler )
111
111
var textNode = document . createTextNode ( String ( counter ) )
You can’t perform that action at this time.
0 commit comments