Skip to content

Instantly share code, notes, and snippets.

@interactiveRob
Created December 13, 2018 20:07
Show Gist options
  • Select an option

  • Save interactiveRob/d88ecf10bcd326d9772451de2d8c1016 to your computer and use it in GitHub Desktop.

Select an option

Save interactiveRob/d88ecf10bcd326d9772451de2d8c1016 to your computer and use it in GitHub Desktop.
No FOUC ES6 Class
export default class NoFouc {
constructor() {
this.$elements = $('.no-fouc');
}
removeFoucBlocker(){
this.$elements.removeClass('.no-fouc');
}
init() {
this.removeFoucBlocker();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment