From 7b33b84e181dc1bebea2a35f22861d46371d3cdf Mon Sep 17 00:00:00 2001 From: mertsincan Date: Wed, 12 May 2021 13:50:03 +0300 Subject: [PATCH] Fixed #1077 - Scrollpanel - Cannot read property classList --- src/components/scrollpanel/ScrollPanel.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/scrollpanel/ScrollPanel.vue b/src/components/scrollpanel/ScrollPanel.vue index 7a6287bd5..46ea0a6a3 100644 --- a/src/components/scrollpanel/ScrollPanel.vue +++ b/src/components/scrollpanel/ScrollPanel.vue @@ -153,7 +153,7 @@ export default { }, requestAnimationFrame(f) { let frame = window.requestAnimationFrame || this.timeoutFrame; - frame(f); + return frame(f); }, refresh() { this.moveBar();