Skip to content

Instantly share code, notes, and snippets.

@wegorich
Created April 8, 2016 14:21
Show Gist options
  • Save wegorich/91b954c9bc21da47f6b14aaeaef3aa76 to your computer and use it in GitHub Desktop.
Save wegorich/91b954c9bc21da47f6b14aaeaef3aa76 to your computer and use it in GitHub Desktop.
Es6 custom events
let e = new CustomEvent('change', {
detail: {value: that.value}
});
that.element.dispatchEvent(e);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment