mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
e711290d8b
Had to do some manual fixing of the app.js file due to misplaced comments
24 lines
542 B
JavaScript
24 lines
542 B
JavaScript
import {Component} from './component';
|
|
|
|
export class DetailsHighlighter extends Component {
|
|
|
|
setup() {
|
|
this.container = this.$el;
|
|
this.dealtWith = false;
|
|
|
|
this.container.addEventListener('toggle', this.onToggle.bind(this));
|
|
}
|
|
|
|
onToggle() {
|
|
if (this.dealtWith) return;
|
|
|
|
if (this.container.querySelector('pre')) {
|
|
window.importVersioned('code').then(Code => {
|
|
Code.highlightWithin(this.container);
|
|
});
|
|
}
|
|
this.dealtWith = true;
|
|
}
|
|
|
|
}
|