MicroFrameWork/resources/custom/js/main.js

20 lines
398 B
JavaScript
Raw Normal View History

2024-09-12 13:24:24 +03:00
(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');
});
})(jQuery);