From 2875a2e8a7fbec6c91d97f6246b5644b44322669 Mon Sep 17 00:00:00 2001 From: picklesrus Date: Mon, 29 Feb 2016 15:13:27 -0800 Subject: [PATCH] Add missing semicolons to methods. Oops. --- core/scrollbar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/scrollbar.js b/core/scrollbar.js index 166cd9da5..ce8f96927 100644 --- a/core/scrollbar.js +++ b/core/scrollbar.js @@ -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; -} +}; // --------------------------------------------------------------------