]> git.r.bdr.sh - rbdr/r.bdr.sh/blobdiff - js/animation.js
Simplify reduce motion check
[rbdr/r.bdr.sh] / js / animation.js
index ee43c544bf351bf06362ba47f895490e4ef8e2a6..23d3ca5a7d5dd80188f61cef5d554ebed0ca1e73 100644 (file)
@@ -1,6 +1,6 @@
 (function () {
 
 (function () {
 
-  if (window.matchMedia(`(prefers-reduced-motion: reduce)`).matches === true) return;
+  if (window.matchMedia('(prefers-reduced-motion: reduce)').matches) return
 
   var K = document.querySelector('canvas'),
     { random: R, PI, cos: C, sin: S, atan2: A } = Math,
 
   var K = document.querySelector('canvas'),
     { random: R, PI, cos: C, sin: S, atan2: A } = Math,