This commit is contained in:
2026-05-20 08:41:40 +02:00
parent a9bf6fbb60
commit 9b5f12bc94
7 changed files with 381 additions and 24 deletions

View File

@@ -163,8 +163,16 @@ this repository contains the full copyright notices and license terms. -->
applyThemeMode(
document.documentElement.getAttribute('data-theme-mode'));
jQuery('.body').show();
function notifyLayoutResize() {
[0, 80, 180, 320].forEach(function(delay) {
window.setTimeout(function() {
window.dispatchEvent(new Event('resize'));
}, delay);
});
}
jQuery('[data-toggle="offcanvas"]').click(function() {
jQuery('.row-offcanvas').toggleClass('active');
notifyLayoutResize();
});
jQuery('#tabs').on('ready', function() {
var mq = window.matchMedia('(max-width: 991px)');