Skip to content

Instantly share code, notes, and snippets.

@robdodson
Created October 4, 2017 17:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robdodson/9b87aac9199cf6e42cfd903f969aa9aa to your computer and use it in GitHub Desktop.
Save robdodson/9b87aac9199cf6e42cfd903f969aa9aa to your computer and use it in GitHub Desktop.
class CustomSlider extends HTMLElement {
constructor() {
super();
this.accessibleNode.role = 'slider';
this.accessibleNode.valueMin = 0;
this.accessibleNode.valueMax = 5;
this.accessibleNode.valueNow = 3;
this.accessibleNode.valueText = 3;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment