Fix "Unnecessary semicolon" lint error
authorDan Vanderkam <danvk@google.com>
Fri, 1 Feb 2013 16:53:34 +0000 (11:53 -0500)
committerDan Vanderkam <danvk@google.com>
Fri, 1 Feb 2013 16:53:34 +0000 (11:53 -0500)
dygraph.js

index 2580556..cd15aad 100644 (file)
@@ -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.