Skip to content

Commit

Permalink
fix: ie table scroll not work #390
Browse files Browse the repository at this point in the history
  • Loading branch information
tangjinzhou committed Jan 15, 2019
1 parent c924f4c commit 754c220
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion components/vc-table/src/Table.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,11 @@ export default {
event.preventDefault();
const wd = event.deltaY;
const target = event.target;
const { bodyTable, fixedColumnsBodyLeft, fixedColumnsBodyRight } = this;
const {
ref_bodyTable: bodyTable,
ref_fixedColumnsBodyLeft: fixedColumnsBodyLeft,
ref_fixedColumnsBodyRight: fixedColumnsBodyRight,
} = this;
let scrollTop = 0;

if (this.lastScrollTop) {
Expand Down

0 comments on commit 754c220

Please sign in to comment.