mirror of
https://github.com/google/blockly.git
synced 2026-01-08 17:40:09 +01:00
Fix infinity in hidden scrollbars. Issue #340.
This commit is contained in:
@@ -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 = {};
|
||||
|
||||
Reference in New Issue
Block a user