2.0.0 • Published 10 years ago
template-polyfill v2.0.0
template-polyfill
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-polyfillvar 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;
}