utils.isAndroidBrowser

This commit is contained in:
psychobunny
2014-04-08 17:35:12 -04:00
parent ff43a619c5
commit d5baaacb72

View File

@@ -257,6 +257,12 @@
escapeRegexChars: function(text) {
return text.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&");
},
isAndroidBrowser: function() {
// http://stackoverflow.com/questions/9286355/how-to-detect-only-the-native-android-browser
var nua = navigator.userAgent;
return ((nua.indexOf('Mozilla/5.0') > -1 && nua.indexOf('Android ') > -1 && nua.indexOf('AppleWebKit') > -1) && !(nua.indexOf('Chrome') > -1));
}
};