UNPKG

activator-oce-exporter

Version:

Extract Activator binder and convert it to valid OCE mono pacakge

17 lines (12 loc) 310 B
class ContentPreloader { constructor() { this.className = 'show-content'; } showNodeContent(rootNode) { if (!rootNode.classList.contains(this.className)) { rootNode.classList.add(this.className); } } } const contentPreloader = new ContentPreloader(); export { contentPreloader };