Skip to content

Commit ed1899e

Browse files
committed
removing metro for now.
1 parent 7514603 commit ed1899e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/configParser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ var ConfigParser = {
5656
else {
5757

5858
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);
59+
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);
6060
});
6161

6262
var osxFiltered = ConfigParser.bsBrowsers.filter(function(currentValue, index, array) {

0 commit comments

Comments
 (0)