mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-11-04 13:31:45 +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; |