Skip to content

Instantly share code, notes, and snippets.

@zdarovka
Created March 23, 2015 20:26
Show Gist options
  • Save zdarovka/fe9a201b4a5b5727a3f7 to your computer and use it in GitHub Desktop.
Save zdarovka/fe9a201b4a5b5727a3f7 to your computer and use it in GitHub Desktop.
Webcomponents polyfill
if ("registerElement" in document
&& "createShadowRoot" in HTMLElement.prototype
&& "import" in document.createElement("link")
&& "content" in document.createElement("template")) {
// We're using a browser with native WC support!
} else {
document.write('<script src="bower_components/webcomponentsjs/webcomponents.js"><\/script>');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment