We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7514603 commit ed1899eCopy full SHA for ed1899e
1 file changed
lib/configParser.js
@@ -56,7 +56,7 @@ var ConfigParser = {
56
else {
57
58
var windowsFiltered = ConfigParser.bsBrowsers.filter(function(currentValue, index, array) {
59
- return currentValue.os == 'Windows' && currentValue.browser == browserObject.browser && parseFloat(currentValue.browser_version).toPrecision(4) == parseFloat(browserObject.browser_version).toPrecision(4);
+ return currentValue.os == 'Windows' && currentValue.browser_version.match(/metro/i) == null && currentValue.browser == browserObject.browser && parseFloat(currentValue.browser_version).toPrecision(4) == parseFloat(browserObject.browser_version).toPrecision(4);
60
});
61
62
var osxFiltered = ConfigParser.bsBrowsers.filter(function(currentValue, index, array) {
0 commit comments