1

Allow value change events to happen even during animation

This commit is contained in:
Alex Yatskov 2014-11-09 22:47:17 +09:00
parent 8f5686c906
commit ef15b331fb

View File

@ -278,10 +278,8 @@
}
function clicked(event, x, y) {
if (_animation === null) {
var rect = _canvas.node.getBoundingClientRect();
updateValue(indicatorToValue(y - rect.top));
}
var rect = _canvas.node.getBoundingClientRect();
updateValue(indicatorToValue(y - rect.top));
}
this.update = function(data, scale) {