24 lines
491 B
JavaScript
24 lines
491 B
JavaScript
(function ($) {
|
|
|
|
"use strict";
|
|
|
|
var fullHeight = function () {
|
|
|
|
$('.js-fullheight').css('height', $(window).height());
|
|
$(window).resize(function () {
|
|
$('.js-fullheight').css('height', $(window).height());
|
|
});
|
|
|
|
};
|
|
fullHeight();
|
|
|
|
$('#sidebarCollapse').on('click', function () {
|
|
$('#sidebar').toggleClass('active');
|
|
});
|
|
|
|
$("#closeAlertBtn").click(function () {
|
|
$("#mainAlert").alert("close");
|
|
});
|
|
|
|
})(jQuery);
|