1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-09-08 22:06:05 +00:00

Fix (again) error in scrollable.js (#4705)

This commit is contained in:
Simon Huber
2020-06-11 14:54:59 +02:00
committed by GitHub
parent bbf20f8955
commit d832cb93ce

View File

@@ -69,7 +69,7 @@ ScrollableWidget.prototype.scrollIntoView = function(element) {
var duration = $tw.utils.getAnimationDuration(),
srcWindow = element ? element.ownerDocument.defaultView : window;
this.cancelScroll();
this.startTime = Date.now(),
this.startTime = Date.now();
var scrollPosition = {
x: this.outerDomNode.scrollLeft,
y: this.outerDomNode.scrollTop