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 if condition inappropriately bypasses setting the initial zoom to index 0 due to the falsy nature of JavaScript and should, instead, be something like:
if (this.options.initial_zoom !== undefined && this.options.initial_zoom !== null)
The text was updated successfully, but these errors were encountered:
This issue is caused by this line:
TimelineJS3/src/js/timeline/Timeline.js
Line 437 in 6a78272
The if condition inappropriately bypasses setting the initial zoom to index 0 due to the falsy nature of JavaScript and should, instead, be something like:
if (this.options.initial_zoom !== undefined && this.options.initial_zoom !== null)
The text was updated successfully, but these errors were encountered: