01-31-2024, 11:21 PM
(01-31-2024, 11:19 PM)Tim Curtis Wrote: Yes. Below is the 8.3.8 code. The 8.3.7 code checked for a different user agent string that worked fine until a recent update to chromium-browser which now reports a different string.
Code:// Detect chromium-browser
GLOBAL.userAgent = navigator.userAgent;
if (GLOBAL.userAgent.indexOf('CrOS') != -1) {
GLOBAL.chromium = true;
} else {
GLOBAL.chromium = false;
}
Yep.