From 735aab1de1cb7d0c8b8bc4695a0ebbf1193c02fd Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Tue, 13 Mar 2007 19:39:55 +0000 Subject: [PATCH] fix move (broken in r1225) --- chrome/content/zotero/xpcom/annotate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/annotate.js b/chrome/content/zotero/xpcom/annotate.js index 16a3eae97..83284c267 100644 --- a/chrome/content/zotero/xpcom/annotate.js +++ b/chrome/content/zotero/xpcom/annotate.js @@ -784,7 +784,7 @@ Zotero.Annotation.prototype._addChildElements = function() { this.moveImg = this.document.createElement("img"); this.moveImg.src = "chrome://zotero/skin/annotation-move.png"; this.moveImg.addEventListener("click", function(e) { - me._startMove(); + me._startMove(e); }, false); moveDiv.appendChild(this.moveImg);