Fix infinity in hidden scrollbars. Issue #340.

This commit is contained in:
Neil Fraser
2016-04-20 17:45:40 -07:00
parent 703ac981da
commit 3df4173039

View File

@@ -516,7 +516,7 @@ Blockly.Scrollbar.prototype.onScroll_ = function() {
var barLength = parseFloat(
this.svgBackground_.getAttribute(this.horizontal_ ? 'width' : 'height'));
var ratio = knobValue / barLength;
if (isNaN(ratio)) {
if (isNaN(ratio) || !barLength) {
ratio = 0;
}
var xyRatio = {};