Skip to content

Instantly share code, notes, and snippets.

@rowan-m
Created August 27, 2019 09:09
Show Gist options
  • Save rowan-m/ec681fb90e8c1117f57b062fa9e6165c to your computer and use it in GitHub Desktop.
Save rowan-m/ec681fb90e8c1117f57b062fa9e6165c to your computer and use it in GitHub Desktop.
class InputKnob extends HTMLElement {
constructor() {
super();
this.attachShadow({ mode: 'open' });
this.shadowRoot.appendChild(template.content.cloneNode(true));
this._container = this.shadowRoot.getElementById('container');
} // ✂️ rest of the class omitted
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment