Skip to content

Instantly share code, notes, and snippets.

@kylebuch8
Created March 7, 2017 17:40
Show Gist options
  • Save kylebuch8/fa62ceb83d31e0e1f60bff4bda8d0e4f to your computer and use it in GitHub Desktop.
Save kylebuch8/fa62ceb83d31e0e1f60bff4bda8d0e4f to your computer and use it in GitHub Desktop.
Do I need to load the web component polyfill?
if ('registerElement' in document
&& 'import' in document.createElement('link')
&& 'content' in document.createElement('template')) {
// browser has web components
} else {
// polyfill web components
var e = document.createElement('script');
e.src = 'bower_components/webcomponentsjs/webcomponents-lite.min.js';
document.head.appendChild(e);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment