Ver código fonte

Fix CSS variable support check

Jasper van Merle 7 anos atrás
pai
commit
05aaf5eedd
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      assets/javascripts/app/app.coffee

+ 1 - 1
assets/javascripts/app/app.coffee

@@ -245,7 +245,7 @@
         matchMedia:         !!window.matchMedia
         matchMedia:         !!window.matchMedia
         insertAdjacentHTML: !!document.body.insertAdjacentHTML
         insertAdjacentHTML: !!document.body.insertAdjacentHTML
         defaultPrevented:     document.createEvent('CustomEvent').defaultPrevented is false
         defaultPrevented:     document.createEvent('CustomEvent').defaultPrevented is false
-        cssVariables:         CSS.supports and CSS.supports('--t:0')
+        cssVariables:         CSS.supports and CSS.supports('--t', '0')
 
 
       for key, value of features when not value
       for key, value of features when not value
         Raven.captureMessage "unsupported/#{key}", level: 'info'
         Raven.captureMessage "unsupported/#{key}", level: 'info'