1
0
mirror of https://github.com/psychopy/psychojs.git synced 2025-05-10 18:50:54 +00:00

Update Util.js

This commit is contained in:
tpronk 2020-04-30 15:56:31 +02:00
parent 926ec69386
commit 9a11171ba2

View File

@ -164,7 +164,7 @@ export function detectBrowser()
// Blink engine detection
const isBlink = (isChrome || isOpera) && !!window.CSS;
if (isBlink) return "Blink";
if (isBlink) return 'Blink';
return 'unknown';
}