Fix getScrollLeft to actually get scroll left

This commit is contained in:
Garen Torikian 2012-02-01 12:09:46 -08:00
commit cd88f1ccfb

View file

@ -666,7 +666,7 @@ var VirtualRenderer = function(container, theme) {
};
this.getScrollLeft = function() {
return this.session.getScrollTop();
return this.session.getScrollLeft();
};
this.getScrollTopRow = function() {