mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 06:10:30 -04:00
Changelog: https://chromium.googlesource.com/chromium/src/+log/75.0.3770.142..76.0.3809.100?pretty=fuller&n=10000 Submitted by: Matthias Wolf <matthias@rheinwolf.de> MFH: 2019Q3
14 lines
382 B
JavaScript
14 lines
382 B
JavaScript
--- ui/webui/resources/js/cr.js.orig 2019-07-24 18:59:23 UTC
|
|
+++ ui/webui/resources/js/cr.js
|
|
@@ -425,6 +425,11 @@ var cr = cr || function(global) {
|
|
get doc() {
|
|
return document;
|
|
},
|
|
+
|
|
+ /** Whether this is on *BSD. */
|
|
+ get isBSD() {
|
|
+ return /BSD/.test(navigator.userAgent);
|
|
+ },
|
|
|
|
/** Whether we are using a Mac or not. */
|
|
get isMac() {
|