20 lines
348 B
JavaScript
20 lines
348 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');
|
|
});
|
|
|
|
})(jQuery);
|