resources update

This commit is contained in:
2025-01-21 14:59:39 +03:00
parent b733a49738
commit dc84874d16
540 changed files with 22846 additions and 45 deletions

View File

@ -0,0 +1,19 @@
(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);