2.0.0 • Published 8 years ago

template-polyfill v2.0.0

Weekly downloads
609
License
MIT
Repository
github
Last release
8 years ago

template-polyfill

npm

A polyfill for the HTML5 <template> tag.

The code is from Brian Blakely's JSFiddle. Packaged up so that people can use it via npm.

Usage

npm install template-polyfill
var templatePolyfill = require('template-polyfill')

templatePolyfill()

You'll also need:

<script>
// In your <head> tag
document.createElement('template');
</script>
/* In your CSS */
template {
  display: none !important;
}