Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1x 12x 12x 12x 12x 1x 12x | export default function setupModal(hooks = self) {
hooks.beforeEach(function() {
this.rootEl = document.querySelector(this.owner.rootElement);
this.modalDivEl = document.createElement('div');
this.modalDivEl.id = 'nucleus-modal-wormhole';
this.rootEl.appendChild(this.modalDivEl);
});
hooks.afterEach(function() {
this.rootEl.removeChild(this.modalDivEl);
});
}
|