mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2024-12-11 17:59:48 +01:00
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);
|