From f0173b80a2f89f88a36a486941ec17024404c241 Mon Sep 17 00:00:00 2001 From: Brummel Date: Thu, 21 May 2026 11:40:36 +0200 Subject: [PATCH] Revert "fix(carousel): initialize Bootstrap carousels explicitly instead of relying on data-ride auto-init" This reverts commit ad9b9782483e0b56f1efc062ce0f41feee4744c6. --- static/js/scripts.js | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/static/js/scripts.js b/static/js/scripts.js index 9e9b100..dd999d4 100644 --- a/static/js/scripts.js +++ b/static/js/scripts.js @@ -80,16 +80,9 @@ jQuery(function ($) { }()); - // ------------------------------------------------------------- - // Bootstrap carousel — explicit init (data-ride auto-init is - // data-api based and was flaky on this custom Bootstrap-3 build - // once the flexslider script was removed). - // ------------------------------------------------------------- - $('.carousel').carousel({ - interval: 5000, - pause: 'hover', - wrap: true - }); + // testimonialSlider block removed — used flexslider for a widget that + // does not exist in this rebuild. Hero carousel and employees carousel + // are both Bootstrap-3, initialized via data-ride="carousel". }); // JQuery end