Index: remoting/webapp/app_remoting/js/drag_and_drop.js |
diff --git a/remoting/webapp/app_remoting/js/drag_and_drop.js b/remoting/webapp/app_remoting/js/drag_and_drop.js |
index 2f01db0f7f24173709407430afc56403e46c0eec..dbe68d5e29ebfda3ef9c58cf36498a722ca54c7f 100644 |
--- a/remoting/webapp/app_remoting/js/drag_and_drop.js |
+++ b/remoting/webapp/app_remoting/js/drag_and_drop.js |
@@ -61,13 +61,13 @@ remoting.DragAndDrop = function(element, dragUpdate, |
this.seenNonZeroDelta_ = false; |
/** |
- * @type {function():void} |
+ * @type {function(Event):void} |
* @private |
*/ |
this.callOnMouseUp_ = this.onMouseUp_.bind(this); |
/** |
- * @type {function():void} |
+ * @type {function(Event):void} |
* @private |
*/ |
this.callOnMouseMove_ = this.onMouseMove_.bind(this); |
@@ -139,4 +139,4 @@ remoting.DragAndDrop.prototype.onMouseUp_ = function(event) { |
if (this.dragEnd_) { |
this.dragEnd_(); |
} |
-}; |
+}; |