Skip to content

Commit

Permalink
fix #339
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Dec 8, 2017
1 parent adeb69d commit 23904b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/_microtask.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ module.exports = function () {
notify = function () {
process.nextTick(flush);
};
// browsers with MutationObserver
} else if (Observer) {
// browsers with MutationObserver, except iOS Safari - https://github.com/zloirock/core-js/issues/339
} else if (Observer && !(global.navigator && global.navigator.standalone)) {
var toggle = true;
var node = document.createTextNode('');
new Observer(flush).observe(node, { characterData: true }); // eslint-disable-line no-new
Expand Down

0 comments on commit 23904b8

Please sign in to comment.