Guest User

Untitled

a guest
Apr 27th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. var myInput = new CustomEvent("input",
  2. {
  3. detail: {
  4. message: "Hello World!",
  5. type: 'text',
  6. },
  7. bubbles: true,
  8. cancelable: true
  9. }
  10. );
  11. this.dispatchEvent(myInput);
Add Comment
Please, Sign In to add comment