Skip to content

Instantly share code, notes, and snippets.

@fearphage
Created May 5, 2010 15:22
Show Gist options
  • Select an option

  • Save fearphage/390915 to your computer and use it in GitHub Desktop.

Select an option

Save fearphage/390915 to your computer and use it in GitHub Desktop.
// detect support for css3 border radius
var BORDER_RADIUS_SUPPORT = (function(document) {
var docEl = document.documentElement, s = docEl && docEl.style;
return (s
? typeof s.borderRadius == 'string'
|| typeof s.KhtmlBorderRadius == 'string'
|| typeof s.MozBorderRadius == 'string'
|| typeof s.WebkitBorderRadius == 'string'
: null
);
})(this.document);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment