[Laszlo-checkins] r14045 - in openlaszlo/trunk: lps/components/extensions test/extensions

hqm@openlaszlo.org hqm at openlaszlo.org
Tue Jun 2 12:12:44 PDT 2009


Author: hqm
Date: 2009-06-02 12:12:42 -0700 (Tue, 02 Jun 2009)
New Revision: 14045

Modified:
   openlaszlo/trunk/lps/components/extensions/html.lzx
   openlaszlo/trunk/test/extensions/html.lzx
Log:
Change 20090602-hqm-3 by hqm at badtzmaru.home on 2009-06-02 13:53:28 EDT
    in /Users/hqm/openlaszlo/trunk6
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: add missing setSendMouseEvents method

New Features:

Bugs Fixed: LPP-8245

Technical Reviewer: 
QA Reviewer: promanik
Doc Reviewer: (pending)

Documentation:

Release Notes:

Details:

+ added setSendMouseEvents method to iframemanager proxy
    

Tests:

test runs without errors



Modified: openlaszlo/trunk/lps/components/extensions/html.lzx
===================================================================
--- openlaszlo/trunk/lps/components/extensions/html.lzx	2009-06-02 17:56:45 UTC (rev 14044)
+++ openlaszlo/trunk/lps/components/extensions/html.lzx	2009-06-02 19:12:42 UTC (rev 14045)
@@ -55,6 +55,12 @@
                                 };
     lz.Browser.callJS('lz.embed.iframemanager.callJavascript', callback, id, methodName, null, args);
 }
+
+lz.embed.iframemanager.setSendMouseEvents = function(id, send) {
+    lz.Browser.callJS('lz.embed.iframemanager.setSendMouseEvents', null, id, send);
+}
+
+
 </script>
 </otherwise>
 </switch>

Modified: openlaszlo/trunk/test/extensions/html.lzx
===================================================================
--- openlaszlo/trunk/test/extensions/html.lzx	2009-06-02 17:56:45 UTC (rev 14044)
+++ openlaszlo/trunk/test/extensions/html.lzx	2009-06-02 19:12:42 UTC (rev 14045)
@@ -66,7 +66,6 @@
         </hbox>    
         <html name="main" history="false" width="100%" height="${classroot.height - this.y - 44}">
             <handler name="oninit">
-                Debug.write('this.src', this.src);
                 this.bringToFront();
             </handler>
             <handler name="oniframe">
@@ -80,7 +79,6 @@
             </handler>
             <method name="mouseevent" args="ename">
                 super.mouseevent(ename);
-                Debug.warn('mouseevent', ename);
             </method>
         </html>
     </class>



More information about the Laszlo-checkins mailing list