26 lines
533 B
JavaScript
26 lines
533 B
JavaScript
|
/**
|
||
|
* Expand or close the sidebar in mobile screens.
|
||
|
*/
|
||
|
|
||
|
const $body = $('body');
|
||
|
const ATTR_DISPLAY = 'sidebar-display';
|
||
|
|
||
|
class SidebarUtil {
|
||
|
static isExpanded = false;
|
||
|
|
||
|
static toggle() {
|
||
|
if (SidebarUtil.isExpanded === false) {
|
||
|
$body.attr(ATTR_DISPLAY, '');
|
||
|
} else {
|
||
|
$body.removeAttr(ATTR_DISPLAY);
|
||
|
}
|
||
|
|
||
|
SidebarUtil.isExpanded = !SidebarUtil.isExpanded;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export function sidebarExpand() {
|
||
|
$('#sidebar-trigger').on('click', SidebarUtil.toggle);
|
||
|
$('#mask').on('click', SidebarUtil.toggle);
|
||
|
}
|