From 6147180900a9aeb9a6488a90eafef103b3da36a9 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Thu, 21 Feb 2013 06:33:16 -0500 Subject: [PATCH] fixed menu in firefox --- lib/client/menu.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/client/menu.js b/lib/client/menu.js index e7feca93..f3cfa602 100644 --- a/lib/client/menu.js +++ b/lib/client/menu.js @@ -249,8 +249,8 @@ var CloudCommander, Util, DOM, $; //DOM.addListener('mousedown', clickProcessing); DOM.addListener('mousemove', function(pEvent){ Position = { - x : pEvent.x, - y : pEvent.y + x : pEvent.clientX, + y : pEvent.clientY }; }); }