1
0
mirror of https://github.com/LinkStackOrg/LinkStack.git synced 2025-03-24 07:20:20 +01:00
LinkStack/studio/js/main-dashboard.js

20 lines
348 B
JavaScript
Raw Normal View History

(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);