You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The property slideDuration seems to not be set properly. Whatever value is set, it always default to 5 seconds (default in the @xpertsea/paper-slider javascript)
Probable cause:
At Line 98 in Carousel.java, this.getElement().setProperty is used
public void setSlideDuration(int slideDuration) {
this.getElement().setProperty(SLIDE_DURATION, slideDuration);
}
Shouldn't this.getElement().setAttribute be used instead as with the other parameters ?
The text was updated successfully, but these errors were encountered:
The property slideDuration seems to not be set properly. Whatever value is set, it always default to 5 seconds (default in the @xpertsea/paper-slider javascript)
Probable cause:
At Line 98 in Carousel.java,
this.getElement().setProperty
is usedShouldn't
this.getElement().setAttribute
be used instead as with the other parameters ?The text was updated successfully, but these errors were encountered: