Add missing semicolons to methods. Oops.

This commit is contained in:
picklesrus
2016-02-29 15:13:27 -08:00
parent 39653b697d
commit 2875a2e8a7

View File

@@ -158,7 +158,7 @@ Blockly.ScrollbarPair.prototype.set = function(x, y) {
this.workspace_.setMetrics(xyRatio);
this.hScroll.svgKnob_.setAttribute('x', hKnobValue);
this.vScroll.svgKnob_.setAttribute('y', vKnobValue);
}
};
/**
* Helper to calculate the ratio of knob value to bar length.
@@ -172,7 +172,7 @@ Blockly.ScrollbarPair.prototype.getRatio_ = function(knobValue, barLength) {
return 0;
}
return ratio;
}
};
// --------------------------------------------------------------------