[Laszlo-checkins] r14104 - in openlaszlo/branches/4.4: . lps/includes/source

ptw@openlaszlo.org ptw at openlaszlo.org
Wed Jun 10 10:07:11 PDT 2009


Author: ptw
Date: 2009-06-10 10:07:09 -0700 (Wed, 10 Jun 2009)
New Revision: 14104

Modified:
   openlaszlo/branches/4.4/
   openlaszlo/branches/4.4/lps/includes/source/iframemanager.js
Log:
Merged revisions 13938,13940-13945,13947,13949,13951-13952,13954-13958,13960-13961,13963,13965-13968,13970,13972-13980,13982,13984-13985,13987-13992,13994-13995,13997-14001,14003-14011,14014-14015,14017-14020,14022-14025,14027-14032,14034,14036-14042,14044,14046,14048-14051,14053-14066,14068-14069,14071-14086,14088-14090,14092-14094,14096-14098 via svnmerge from 
http://svn.openlaszlo.org/openlaszlo/trunk

.......
  r14098 | max | 2009-06-09 16:58:43 -0400 (Tue, 09 Jun 2009) | 16 lines
  
  Change 20090609-maxcarlson-l by maxcarlson at Bank on 2009-06-09 13:37:09 PDT
      in /Users/maxcarlson/openlaszlo/trunk-clean
      for http://svn.openlaszlo.org/openlaszlo/trunk
  
  Summary: Fix typo in iframemanager.js
  
  Bugs Fixed: LPP-8177 - Don't get mouseover on LZX view over an iframe when I click on the iframe in Firefox
  
  Technical Reviewer: andre.bargull at udo.edu
  QA Reviewer: lorien
  
  Details: Fix typo, thanks to Andre.
  
  Tests: See LPP-8177.
.......



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-13937,13948-13952,13954-13968,13970,13972-13980,13982-13985,13987-14002,14021-14032,14034,14036-14067,14087,14091-14095
   + /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

Modified: openlaszlo/branches/4.4/lps/includes/source/iframemanager.js
===================================================================
--- openlaszlo/branches/4.4/lps/includes/source/iframemanager.js	2009-06-10 16:18:00 UTC (rev 14103)
+++ openlaszlo/branches/4.4/lps/includes/source/iframemanager.js	2009-06-10 17:07:09 UTC (rev 14104)
@@ -348,7 +348,7 @@
 
             // clear __lastMouseDown to prevent mouseover/out events being sent as dragin/out events - see LzSprite.js and LzMouseKernel.js - there will be no global mouseup sent from window.document to clear this...
             if (eventname == 'onmouseup') {
-                if (LzMouseKernel.__lastMouseDown = iframe.owner.sprite) {
+                if (LzMouseKernel.__lastMouseDown == iframe.owner.sprite) {
                     LzMouseKernel.__lastMouseDown = null;
                 }
             }



More information about the Laszlo-checkins mailing list