mirror of
https://github.com/fluent/fluentd-ui.git
synced 2026-05-17 08:36:11 +02:00
19 lines
479 B
JavaScript
19 lines
479 B
JavaScript
$(function() {
|
|
|
|
$('#side-menu').metisMenu();
|
|
|
|
});
|
|
|
|
//Loads the correct sidebar on window load,
|
|
//collapses the sidebar on window resize.
|
|
$(function() {
|
|
$(window).bind("load resize", function() {
|
|
width = (this.window.innerWidth > 0) ? this.window.innerWidth : this.screen.width;
|
|
if (width < 768) {
|
|
$('div.sidebar-collapse').addClass('collapse')
|
|
} else {
|
|
$('div.sidebar-collapse').removeClass('collapse')
|
|
}
|
|
})
|
|
})
|