Scroller: fix javascript error scroller_$fixedColumns undefined

This commit is contained in:
Mottie 2015-06-30 18:54:55 -05:00
parent 6fede75e79
commit 57efd75a40
2 changed files with 5 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -441,7 +441,10 @@ ts.scroller = {
// restore scrollTop - fixes #926
$tableWrap.scrollTop( wo.scroller_saved[1] );
wo.scroller_$fixedColumns.find( '.' + tscss.scrollerTable ).scrollTop( wo.scroller_saved[1] );
wo.scroller_$container
.find( '.' + tscss.scrollerFixed )
.find( '.' + tscss.scrollerTable )
.scrollTop( wo.scroller_saved[1] );
// update resizable widget handles
setTimeout( function() {