[Laszlo-checkins] r14107 - in openlaszlo/branches/4.4: . WEB-INF/lps/lfc/kernel/dhtml
ptw@openlaszlo.org
ptw at openlaszlo.org
Wed Jun 10 11:57:36 PDT 2009
Author: ptw
Date: 2009-06-10 11:57:34 -0700 (Wed, 10 Jun 2009)
New Revision: 14107
Modified:
openlaszlo/branches/4.4/
openlaszlo/branches/4.4/WEB-INF/lps/lfc/kernel/dhtml/LzMouseKernel.js
Log:
Merged revisions 14106 via svnmerge from
http://svn.openlaszlo.org/openlaszlo/trunk
.......
r14106 | max | 2009-06-10 14:39:15 -0400 (Wed, 10 Jun 2009) | 16 lines
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
.......
Property changes on: openlaszlo/branches/4.4
___________________________________________________________________
Name: svnmerge-integrated
- /openlaszlo/branches/4.1:1-10153 /openlaszlo/branches/4.2:1-12154,12181,13205,13778 /openlaszlo/branches/devildog:1-8432 /openlaszlo/branches/pagan-deities:1-7955,8825,10756-10920,10922-10928,10930-10935,11151,11207,11554,13476,13629 /openlaszlo/branches/paperpie:1-6504,6506-6574,6576-7135,7137-7235 /openlaszlo/branches/wafflecone:1-5746,5818-6068,6070-6205,6207-6213,6216-6265,6267-6368,6370-6431,6433-6450,6497,6509,6661,7097,7872 /openlaszlo/trunk:1-13938,13940-13945,13947-13952,13954-13968,13970,13972-13980,13982-13985,13987-14015,14017-14032,14034,14036-14069,14071-14098
+ /openlaszlo/branches/4.1:1-10153 /openlaszlo/branches/4.2:1-12154,12181,13205,13778 /openlaszlo/branches/devildog:1-8432 /openlaszlo/branches/pagan-deities:1-7955,8825,10756-10920,10922-10928,10930-10935,11151,11207,11554,13476,13629 /openlaszlo/branches/paperpie:1-6504,6506-6574,6576-7135,7137-7235 /openlaszlo/branches/wafflecone:1-5746,5818-6068,6070-6205,6207-6213,6216-6265,6267-6368,6370-6431,6433-6450,6497,6509,6661,7097,7872 /openlaszlo/trunk:1-13938,13940-13945,13947-13952,13954-13968,13970,13972-13980,13982-13985,13987-14015,14017-14032,14034,14036-14069,14071-14098,14106
Modified: openlaszlo/branches/4.4/WEB-INF/lps/lfc/kernel/dhtml/LzMouseKernel.js
===================================================================
--- openlaszlo/branches/4.4/WEB-INF/lps/lfc/kernel/dhtml/LzMouseKernel.js 2009-06-10 18:39:15 UTC (rev 14106)
+++ openlaszlo/branches/4.4/WEB-INF/lps/lfc/kernel/dhtml/LzMouseKernel.js 2009-06-10 18:57:34 UTC (rev 14107)
@@ -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