Skip to content

Instantly share code, notes, and snippets.

@kyuwoo-choi
Created July 23, 2017 06:43
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 kyuwoo-choi/c1fcdc728051d8c77ac8ae955133dc8b to your computer and use it in GitHub Desktop.
Save kyuwoo-choi/c1fcdc728051d8c77ac8ae955133dc8b to your computer and use it in GitHub Desktop.
class CurrentTimeText extends HTMLElement {
...
connectedCallback() {
// call parents callback
this.parentNode.childReady(this);
// or
this.parentNode.dispatchEvent(new Event('childReady'));
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment