Skip to content

Instantly share code, notes, and snippets.

@ccarruitero
Last active December 3, 2018 17:49
Show Gist options
  • Save ccarruitero/93617fce4c0644be72b5a8100d7f05eb to your computer and use it in GitHub Desktop.
Save ccarruitero/93617fce4c0644be72b5a8100d7f05eb to your computer and use it in GitHub Desktop.
moz-meetup demo
<!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>
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