Browse Source

Fix #76 - set scrollTop property of element node rather than use scrollTo() method

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
b304cc07d5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/assets/javascripts/components/features/ui/components/column.jsx

+ 1
- 1
app/assets/javascripts/components/features/ui/components/column.jsx View File

@ -18,7 +18,7 @@ const scrollTop = (node) => {
return;
}
node.scrollTo(0, easingOutQuint(0, elapsed, offset, targetY, duration));
node.scrollTop = easingOutQuint(0, elapsed, offset, targetY, duration);
requestAnimationFrame(step);
};

Loading…
Cancel
Save