[Laszlo-checkins] r16840 - openlaszlo/branches/4.8/WEB-INF/lps/lfc/debugger/platform/dhtml
ptw@openlaszlo.org
ptw at openlaszlo.org
Wed Jun 30 08:20:49 PDT 2010
Author: ptw
Date: 2010-06-30 08:20:47 -0700 (Wed, 30 Jun 2010)
New Revision: 16840
Modified:
openlaszlo/branches/4.8/WEB-INF/lps/lfc/debugger/platform/dhtml/LzDebug.js
Log:
Change 20100630-ptw-3 by ptw at padme.home on 2010-06-30 11:16:09 EDT
in /Users/ptw/OpenLaszlo/4.8
for http://svn.openlaszlo.org/openlaszlo/branches/4.8
Summary: Make ?lzconsoledebug=true work in DHTML again
Bugs Fixed: LPP-9158 IE8 DHTML: debugger scrolling broken (workaround)
Technical Reviewer: henry.minsky at gmail.com (pending)
QA Reviewer: max at openlaszlo.org (pending)
Release Notes:
The 'in-app' debugger console window scrolling is broken for the
DHTML runtime when using Internet Explorer 8. As a workaround,
you can use the 'Remote Console' option, which will display the
debugger console window in an HTML <iframe> element.
Details:
Use the browser kernel to get the lzconsoledebug option
Tests:
IWFM
Modified: openlaszlo/branches/4.8/WEB-INF/lps/lfc/debugger/platform/dhtml/LzDebug.js
===================================================================
--- openlaszlo/branches/4.8/WEB-INF/lps/lfc/debugger/platform/dhtml/LzDebug.js 2010-06-30 08:28:08 UTC (rev 16839)
+++ openlaszlo/branches/4.8/WEB-INF/lps/lfc/debugger/platform/dhtml/LzDebug.js 2010-06-30 15:20:47 UTC (rev 16840)
@@ -187,7 +187,7 @@
}
// Make the real console. This is only called if the user code
// did not actually instantiate a <debug /> tag
- if (global['lzconsoledebug'] == 'true') {
+ if (LzBrowserKernel.getInitArg('lzconsoledebug') == 'true') {
// Create a DHTML iframe console
this.attachDebugConsole(new LzDHTMLDebugConsole(this.createDebugIframe()));
} else {
More information about the Laszlo-checkins
mailing list