From 81ce45298e149139aff0ddfa77b768365c683444 Mon Sep 17 00:00:00 2001 From: Dan Vanderkam Date: Fri, 1 Feb 2013 11:53:34 -0500 Subject: [PATCH] Fix "Unnecessary semicolon" lint error --- dygraph.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.7.4