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 () {
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 ) )
You can’t perform that action at this time.
0 commit comments