FIXED ISSUE #69 Scrolling over fixed column header distorts the table

master
hiddes 2014-01-31 14:51:53 +07:00
parent 802503fe07
commit e7aa5be530
2 changed files with 2 additions and 2 deletions

View File

@ -463,7 +463,7 @@
// bind mousewheel events
var maxTop = $fixedColumn.find('.fht-tbody .fht-table').height() - $fixedColumn.find('.fht-tbody').height();
$fixedColumn.find('.fht-table').bind('mousewheel', function(event, delta, deltaX, deltaY) {
$fixedColumn.find('.fht-tbody .fht-table').bind('mousewheel', function(event, delta, deltaX, deltaY) {
if (deltaY == 0) {
return;
}

File diff suppressed because one or more lines are too long