After set scroll after 15 second not work, is scroll automatic after 7 second.

Must change options to lowercase, after this work
Autostart = autostart

I think i open such issue, but i can find, please create patch and fix it.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Regnoy created an issue. See original summary.

mozh92’s picture

FileSize
140.16 KB

autostart and interval not work

mozh92’s picture

File: /assets/vendor/jcarousel/jcarousel.js

for (var option in options) {
if (option.indexOf('autoscroll') == 0) {
- var param_name = option.replace('autoscroll', '');
+ var param_name = option.replace('autoscroll', '').toLowerCase();
autoscroll_options[param_name] = options[option];
delete options[option];
}

mozh92’s picture

patch