Scroller: mousewheel scrolling on fixed column works again

This commit is contained in:
Mottie 2015-06-01 20:31:11 -05:00
parent 1fb45130ce
commit 4e38030dc2
2 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -132,9 +132,9 @@ $( function() {
/* need to position the tbody & tfoot absolutely to hide the scrollbar & move the footer
below the horizontal scrollbar */
'.' + tscss.scrollerFixed + ' .' + tscss.scrollerFooter + ' { position: absolute; bottom: 0; }' +
/* hide fixed tbody scrollbar - see http://goo.gl/VsLe6n */
/* hide fixed tbody scrollbar - see http://goo.gl/VsLe6n - set overflow to auto here for mousewheel scroll */
'.' + tscss.scrollerFixed + ' .' + tscss.scrollerTable +
' { position: relative; left: 0; overflow: hidden; -ms-overflow-style: none; }' +
' { position: relative; left: 0; overflow: auto; -ms-overflow-style: none; }' +
'.' + tscss.scrollerFixed + ' .' + tscss.scrollerTable + '::-webkit-scrollbar { display: none; }' +
/*** fixed column panel ***/
'.' + tscss.scrollerWrap + ' .' + tscss.scrollerFixedPanel +