fix(addStyles): update for test for old IE versions (#196)

master
Alexander Grimalovsky 2017-03-22 05:32:29 +03:00 committed by Michael Ciniawsky
parent b153070733
commit 1f68495a17
1 changed files with 6 additions and 1 deletions

View File

@ -11,7 +11,12 @@ var stylesInDom = {},
};
},
isOldIE = memoize(function() {
return /msie [6-9]\b/.test(self.navigator.userAgent.toLowerCase());
// Test for IE <= 9 as proposed by Browserhacks
// @see http://browserhacks.com/#hack-e71d8692f65334173fee715c222cb805
// Tests for existence of standard globals is to allow style-loader
// to operate correctly into non-standard environments
// @see https://github.com/webpack-contrib/style-loader/issues/177
return window && document && document.all && !window.atob;
}),
getElement = (function(fn) {
var memo = {};