From: Dan Vanderkam <danvk@google.com>
Date: Fri, 1 Feb 2013 16:53:34 +0000 (-0500)
Subject: Fix "Unnecessary semicolon" lint error
X-Git-Tag: v1.0.0~106
X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=81ce45298e149139aff0ddfa77b768365c683444;p=dygraphs.git

Fix "Unnecessary semicolon" lint error
---

diff --git a/dygraph.js b/dygraph.js
index 2580556..cd15aad 100644
--- a/dygraph.js
+++ b/dygraph.js
@@ -1282,7 +1282,7 @@ Dygraph.prototype.createDragInterface_ = function() {
   // This happens when the graph is resized.
   if (this.mouseUpHandler_) {
     Dygraph.removeEvent(document, 'mouseup', this.mouseUpHandler_);
-  };
+  }
 
   // If the user releases the mouse button during a drag, but not over the
   // canvas, then it doesn't count as a zooming action.