MicroFrameWork/resources/simple/js/main.js

20 lines
348 B
JavaScript
Raw Normal View History

2024-09-03 16:29:44 +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);