()
| 24312 | class DefaultTheme extends AbstractTheme {} |
| 24313 | class AbstractParticleComponentParser extends ParserBackedParticle { |
| 24314 | async startWhenReady() { |
| 24315 | if (this.isNodeJs()) return this.start() |
| 24316 | document.addEventListener( |
| 24317 | "DOMContentLoaded", |
| 24318 | async () => { |
| 24319 | this.start() |
| 24320 | }, |
| 24321 | false |
| 24322 | ) |
| 24323 | } |
| 24324 | start() { |
| 24325 | this._bindParticleComponentFrameworkCommandListenersOnBody() |
| 24326 | this.renderAndGetRenderReport(this.willowBrowser.getBodyStumpParticle()) |