1 import {Component} from './component';
3 export class DetailsHighlighter extends Component {
6 this.container = this.$el;
7 this.dealtWith = false;
9 this.container.addEventListener('toggle', this.onToggle.bind(this));
13 if (this.dealtWith) return;
15 if (this.container.querySelector('pre')) {
16 window.importVersioned('code').then(Code => {
17 Code.highlightWithin(this.container);
20 this.dealtWith = true;