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
even though the current handling of initialSlide partially works:
"initialSlide: scope.initialSlide || 0,"
it really ought to be treated with parseInt() to force it into a numeric type, as kenwheeler slick.js expects it to be a numeric type and not a string.
for example in: https://github.com/kenwheeler/slick/blob/1.5.2/slick/slick.js:399
^^^ (note that here the '+' operator is clearly arithmetic and not a string concatenator).
even though the current handling of initialSlide partially works:
"initialSlide: scope.initialSlide || 0,"
it really ought to be treated with parseInt() to force it into a numeric type, as kenwheeler slick.js expects it to be a numeric type and not a string.
for example in:
https://github.com/kenwheeler/slick/blob/1.5.2/slick/slick.js:399
^^^ (note that here the '+' operator is clearly arithmetic and not a string concatenator).
I suggest
as is currently the practice for other params that are to be treated as numeric.
The text was updated successfully, but these errors were encountered: