[Laszlo-checkins] r11481 - openlaszlo/trunk/WEB-INF/lps/lfc/kernel/dhtml
bargull@openlaszlo.org
bargull at openlaszlo.org
Fri Oct 17 03:13:32 PDT 2008
Author: bargull
Date: 2008-10-17 03:13:29 -0700 (Fri, 17 Oct 2008)
New Revision: 11481
Modified:
openlaszlo/trunk/WEB-INF/lps/lfc/kernel/dhtml/LzBrowserKernel.lzs
Log:
Change 20081017-bargull-kJG by bargull at dell--p4--2-53 on 2008-10-17 12:15:46
in /home/Admin/src/svn/openlaszlo/trunk
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: add if($debug)
New Features:
Bugs Fixed: LPP-7179
Technical Reviewer: (pending)
QA Reviewer: (pending)
Doc Reviewer: (pending)
Documentation:
Release Notes:
Details:
Wrap Debug.warn call around if($debug)
Tests:
Modified: openlaszlo/trunk/WEB-INF/lps/lfc/kernel/dhtml/LzBrowserKernel.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/kernel/dhtml/LzBrowserKernel.lzs 2008-10-17 10:13:03 UTC (rev 11480)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/kernel/dhtml/LzBrowserKernel.lzs 2008-10-17 10:13:29 UTC (rev 11481)
@@ -167,7 +167,7 @@
*/
static function showMenu (truefalse) {
//TODO Not implemented
- Debug.warn("showMenu not implemented");
+ if ($debug) Debug.warn("showMenu not implemented");
}
@@ -179,7 +179,7 @@
*/
static function setClipboard (str){
//TODO Not implemented
- Debug.warn("setClipboard not implemented");
+ if ($debug) Debug.warn("setClipboard not implemented");
}
/**
@@ -190,7 +190,7 @@
*/
static function isAAActive (){
//TODO Not implemented
- Debug.warn("isAAActive not implemented");
+ if ($debug) Debug.warn("isAAActive not implemented");
return false;
}
@@ -201,7 +201,7 @@
*/
static function updateAccessibility () {
//TODO Not implemented
- Debug.warn("updateAccessibility not implemented");
+ if ($debug) Debug.warn("updateAccessibility not implemented");
}
More information about the Laszlo-checkins
mailing list