mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-10-29 16:09:29 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			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;
 | |
|     }
 | |
| 
 | |
| }
 |