You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For information on the problem
is.chrome() returns false for Google Chrome on Apple mobile devices because the regexp used in the function, it is testing navigator.vendor and it returns 'Apple Computer, Inc.' instead of the expected 'google inc'
line 628
// is current browser chrome?
// parameter is optional
is.chrome = function(range) {
var match = /google inc/.test(vendor) ? userAgent.match(/(?:chrome|crios)\/(\d+)/) : null;
return match !== null && is.not.opera() && compareVersion(match[1], range);
};
Is this library still being actively maintained? I just started using it and would really benefit from this issue being fixed, but looking at the issues, it seems like there is very little activity from the developers in the past couple of years.
The text was updated successfully, but these errors were encountered: