Created
June 13, 2014 11:41
-
-
Save jtreitz/70e0fe5735f20bef20a9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_is_css_blur_supported = (-> | |
_supported = 'dontknow' | |
return -> | |
return _supported unless _supported == 'dontknow' | |
el = $('<div/>') | |
$(document.body).append(el) | |
el[0].style.webkitFilter = "grayscale(1)" | |
_supported = window.getComputedStyle(el[0]).webkitFilter == "grayscale(1)" | |
el.remove() | |
return _supported | |
)() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment