Last active
May 3, 2019 06:59
-
-
Save benald/b9849f660ecc3f40d04bc5a0d28810d3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
TS: | |
// OnInit | |
ngOnInit() { | |
this.addBodyClass(); | |
} | |
// Function: Add class to body | |
addBodyClass() { | |
const bodyTag = document.body; | |
bodyTag.classList.add('my-class'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment