FlorianEisenmenger 7 horas atrás
pai
commit
42ebfbf8a9
1 arquivos alterados com 4 adições e 1 exclusões
  1. +4
    -1
      gfi-ihk-2024/stories/sections/slider/slider.js

+ 4
- 1
gfi-ihk-2024/stories/sections/slider/slider.js Ver arquivo

@@ -106,7 +106,10 @@ class IHKSlider {

this.prevButton = $('<button class="prev" aria-label="Zurück" />');
this.nextButton = $('<button class="next" aria-label="Weiter" />');
const tabsWrapper = $('<ul class="slider-tabs variant-base" />');
const tabsWrapper = $('<ul class="slider-tabs" />');
if (!this.section.closest('.steps').length) {
tabsWrapper.addClass('variant-base');
}
const countWrapper = $('<span class="count" />')
.html('/<span class="total">' + this.slides.length + '</span></span>')
.prepend(this.count);


Carregando…
Cancelar
Salvar