From d832cb93ce48f3cfaefb18809930e2448917bc93 Mon Sep 17 00:00:00 2001 From: Simon Huber Date: Thu, 11 Jun 2020 14:54:59 +0200 Subject: [PATCH] Fix (again) error in scrollable.js (#4705) --- core/modules/widgets/scrollable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/widgets/scrollable.js b/core/modules/widgets/scrollable.js index 01a04a7eb..97f0dcdf1 100644 --- a/core/modules/widgets/scrollable.js +++ b/core/modules/widgets/scrollable.js @@ -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