Last active
December 3, 2018 17:49
-
-
Save ccarruitero/93617fce4c0644be72b5a8100d7f05eb to your computer and use it in GitHub Desktop.
moz-meetup demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<body> | |
<template id='moz-meetup'> | |
<p><slot name='message'>Hello meetup</slot></p> | |
</template> | |
<moz-meetup> | |
<p slot='message'> | |
another message | |
</p> | |
</moz-meetup> | |
<script src='demo.js'> | |
</script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Demo extends HTMLElement { | |
constructor() { | |
super(); | |
const shadow = this.attachShadow({mode: 'open'}); | |
const text = document.querySelector('#moz-meetup'); | |
shadow.appendChild(text.content.cloneNode(true)); | |
} | |
} | |
customElements.define('moz-meetup', Demo); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment