-
-
Save martinandersen3d/66b2566d127d716635fa73cccac873b6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//defining autonomous custom elements: | |
if(!customElements.get('my-element')){ | |
customElements.define('my-element',MyElement); | |
} | |
//defining customised button element: | |
if(!customElements.get('custom-button')){ | |
customElements.define('custom-button',CustomButton,{extends:'button'}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment