[Laszlo-checkins] r14106 - openlaszlo/trunk/WEB-INF/lps/lfc/kernel/dhtml
max@openlaszlo.org
max at openlaszlo.org
Wed Jun 10 11:39:16 PDT 2009
Author: max
Date: 2009-06-10 11:39:15 -0700 (Wed, 10 Jun 2009)
New Revision: 14106
Modified:
openlaszlo/trunk/WEB-INF/lps/lfc/kernel/dhtml/LzMouseKernel.js
Log:
Change 20090609-maxcarlson-y by maxcarlson at Bank on 2009-06-09 15:06:47 PDT
in /Users/maxcarlson/openlaszlo/trunk-clean
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: Fix typo in LzMouseKernel.js
Bugs Fixed: LPP-8258 - DHTML: Context menus offset when clicking on an html component/iframe
Technical Reviewer: andre.bargull at udo.edu
QA Reviewer: mdemmon
Details: As Andre said: Obviously, "offsetx" needs to be added to "__x" instead of "offsety".
Tests: See LPP-8258
Modified: openlaszlo/trunk/WEB-INF/lps/lfc/kernel/dhtml/LzMouseKernel.js
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/kernel/dhtml/LzMouseKernel.js 2009-06-10 17:09:18 UTC (rev 14105)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/kernel/dhtml/LzMouseKernel.js 2009-06-10 18:39:15 UTC (rev 14106)
@@ -228,7 +228,7 @@
LzMouseKernel.__y = e.clientY + body.scrollTop + docElem.scrollTop;
}
if (offsetx) {
- LzMouseKernel.__x += offsety;
+ LzMouseKernel.__x += offsetx;
}
if (offsety) {
LzMouseKernel.__y += offsety;
More information about the Laszlo-checkins
mailing list