* Fixed merge oops

This commit is contained in:
Ruben Daniels 2012-04-11 21:23:54 +02:00
commit 7b00aa8081

View file

@ -728,7 +728,7 @@ var VirtualRenderer = function(container, theme) {
this.STEPS = 10;
this.$calcSteps = function(fromValue, toValue){
var i = 0;
var l = STEPS;
var l = this.STEPS;
var steps = [];
var func = function(t, x_min, dx) {
@ -759,7 +759,7 @@ var VirtualRenderer = function(container, theme) {
this.$timer = setInterval(function() {
_self.session.setScrollTop(steps[i]);
if (++i == STEPS + 1)
if (++i == this.STEPS + 1)
clearInterval(_self.$timer);
}, 10);
}