Renamed source directory, changed dockerfile for running docker image according to the official documentation

This commit is contained in:
2026-03-06 12:32:44 +01:00
parent 3cd2c3d0a6
commit 460fdb828e
409 changed files with 36 additions and 34 deletions

View File

@@ -0,0 +1,17 @@
$(document).ready(function () {
function promoTopNext() {
if ($('.promo-backs').length) {
setTimeout(function () {
var current = $('.promo-bg.current');
current.removeClass('current');
if (current.next().length) {
current.next().addClass('current');
} else {
current.parent().find('.promo-bg:first-child').addClass('current');
}
promoTopNext();
}, 4500);
}
};
promoTopNext();
});