Your IP : 216.73.216.79


Current Path : /var/www/html/bookstack/resources/js/components/
Upload File :
Current File : /var/www/html/bookstack/resources/js/components/sidebar.js

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;