From 18697d8ee73e9ce2c236b43cd6d3bd6fe69b2f67 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Wed, 29 May 2019 10:10:18 +0000 Subject: [PATCH] Update src/utils/FontManager.js Co-Authored-By: J. Ryan Stinnett --- src/utils/FontManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/FontManager.js b/src/utils/FontManager.js index 462ac94580..e51efb8a2c 100644 --- a/src/utils/FontManager.js +++ b/src/utils/FontManager.js @@ -31,7 +31,7 @@ function safariVersionCheck(ua) { const safariVersion = safariVersionStr.split(".").map(n => parseInt(n, 10)); const colrFontSupported = macOSVersion[0] >= 10 && macOSVersion[1] >= 14 && safariVersion[0] >= 12; // https://www.colorfonts.wtf/ states safari supports COLR fonts from this version on - console.log(`Browser is Safari - requiring macOS 10.14 and Safari 12,` + + console.log(`Browser is Safari - requiring macOS 10.14 and Safari 12, ` + `detected Safari ${safariVersionStr} on macOS ${macOSVersionStr}, ` + `COLR supported: ${colrFontSupported}`); return colrFontSupported;