fix safari load issues

This commit is contained in:
Luke Pulverenti 2016-04-03 13:36:47 -04:00
parent 948aebfb44
commit f4f15d265c
11 changed files with 98 additions and 358 deletions

View file

@ -56,18 +56,6 @@ define(['browser'], function (browser) {
return true;
}
// Newer mobile chrome supports it but doesn't report it
if (browser.chrome) {
var version = (browser.version || '').toString().split('.')[0];
try {
version = parseInt(version);
if (version >= 49) {
return true;
}
} catch (err) {
}
}
return false;
}