mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
a2bcf765a8
Added a cache-compatible module loading system/pattern to the codebase.
21 lines
491 B
JavaScript
21 lines
491 B
JavaScript
class DetailsHighlighter {
|
|
|
|
constructor(elem) {
|
|
this.elem = elem;
|
|
this.dealtWith = false;
|
|
elem.addEventListener('toggle', this.onToggle.bind(this));
|
|
}
|
|
|
|
onToggle() {
|
|
if (this.dealtWith) return;
|
|
|
|
if (this.elem.querySelector('pre')) {
|
|
window.importVersioned('code').then(Code => {
|
|
Code.highlightWithin(this.elem);
|
|
});
|
|
}
|
|
this.dealtWith = true;
|
|
}
|
|
}
|
|
|
|
export default DetailsHighlighter; |