Fixed #726 - ScrollPanel: Cannot read property 'classList' of null

pull/1196/head^2
mertsincan 2021-05-12 13:47:59 +03:00
parent 3ac89d0b9a
commit f5de73de8f
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ export default {
}, },
requestAnimationFrame(f) { requestAnimationFrame(f) {
let frame = window.requestAnimationFrame || this.timeoutFrame; let frame = window.requestAnimationFrame || this.timeoutFrame;
frame(f); return frame(f);
}, },
refresh() { refresh() {
this.moveBar(); this.moveBar();