mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-10-31 03:50:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			339 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			339 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * A simple component to render a code editor within the textarea
 | |
|  * this exists upon.
 | |
|  * @extends {Component}
 | |
|  */
 | |
| class CodeTextarea {
 | |
| 
 | |
|     async setup() {
 | |
|         const mode = this.$opts.mode;
 | |
|         const Code = await window.importVersioned('code');
 | |
|         Code.inlineEditor(this.$el, mode);
 | |
|     }
 | |
| 
 | |
| }
 | |
| 
 | |
| export default CodeTextarea; |