mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-10-31 03:50:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			318 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			318 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 
 | |
| class Sidebar {
 | |
| 
 | |
|     constructor(elem) {
 | |
|         this.elem = elem;
 | |
|         this.toggleElem = elem.querySelector('.sidebar-toggle');
 | |
|         this.toggleElem.addEventListener('click', this.toggle.bind(this));
 | |
|     }
 | |
| 
 | |
|     toggle(show = true) {
 | |
|         this.elem.classList.toggle('open');
 | |
|     }
 | |
| 
 | |
| }
 | |
| 
 | |
| export default Sidebar; |