unzip theme

This commit is contained in:
2024-09-12 13:24:24 +03:00
parent 492796d5a8
commit 2105c7bc61
105 changed files with 16207 additions and 0 deletions

7
resources/custom/js/bootstrap.min.js vendored Normal file

File diff suppressed because one or more lines are too long

2
resources/custom/js/jquery.min.js vendored Normal file

File diff suppressed because one or more lines are too long

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

File diff suppressed because one or more lines are too long