Punt on AMD testing for Android because of stability issues.

This commit is contained in:
John-David Dalton
2014-05-17 22:17:48 -07:00
parent aa0c02a243
commit 80a38b285d
4 changed files with 3 additions and 29 deletions

View File

@@ -135,8 +135,9 @@ if (_.contains(tags, 'amd')) {
var browser = browserName(platform[1]),
version = +platform[2];
if (browser == 'Opera') {
return version >= 10;
switch (browser) {
case 'Android': return version >= 4.4;
case 'Opera': return version >= 10;
}
return true;
});