UNPKG

mdx-m3-viewer

Version:

A browser WebGL model viewer. Mainly focused on models of the games Warcraft 3 and Starcraft 2.

22 lines (17 loc) 377 B
class Component { constructor(options) { this.container = createElement({ ...options, component: this }); } hide() { hideElement(this.container); } show() { showElement(this.container); } highlight() { this.container.classList.add('highlighted'); } normal() { this.container.classList.remove('highlighted'); } }