Skip to content

Commit d8ada90

Browse files
author
Jake Scott
committed
fixed regex
1 parent db33060 commit d8ada90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addStyles.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var stylesInDom = {},
1111
};
1212
},
1313
isOldIE = memoize(function() {
14-
return /msie [6-9]b/.test(window.navigator.userAgent.toLowerCase());
14+
return /msie [6-9]\b/.test(window.navigator.userAgent.toLowerCase());
1515
}),
1616
getHeadElement = memoize(function () {
1717
return document.head || document.getElementsByTagName("head")[0];

0 commit comments

Comments
 (0)