[Laszlo-checkins] r13137 - openlaszlo/trunk/WEB-INF/lps/lfc/kernel/dhtml

max@openlaszlo.org max at openlaszlo.org
Tue Mar 3 03:51:28 PST 2009


Author: max
Date: 2009-03-03 03:51:26 -0800 (Tue, 03 Mar 2009)
New Revision: 13137

Modified:
   openlaszlo/trunk/WEB-INF/lps/lfc/kernel/dhtml/LzSprite.js
Log:
Change 20090302-maxcarlson-S by maxcarlson at Bank.lan on 2009-03-02 21:36:46 PST
    in /Users/maxcarlson/openlaszlo/trunk-clean
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: Fix display of components in IE 6 DHTML

Bugs Fixed: LPP-7851 - IE 6 DHTML: components using CSS sprites don't show up, e.g. radiobutton

Technical Reviewer: andre.bargull at udo.edu
QA Reviewer: promanik

Details: Turn off use_css_sprites quirk when ie_alpha_image_loader is on.  

Tests: See LPP-7851



Modified: openlaszlo/trunk/WEB-INF/lps/lfc/kernel/dhtml/LzSprite.js
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/kernel/dhtml/LzSprite.js	2009-03-03 11:09:59 UTC (rev 13136)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/kernel/dhtml/LzSprite.js	2009-03-03 11:51:26 UTC (rev 13137)
@@ -472,6 +472,8 @@
             quirks['focus_on_mouseover'] = false;
             // required for text-align / text-indent to work
             quirks['textstyle_on_textdiv'] = true;
+            // CSS sprites conflict with ie_alpha_image_loader...
+            quirks['use_css_sprites'] = ! quirks['ie_alpha_image_loader'];
         } else if (browser.isSafari) {
             // Remap alt/option key also sends control since control-click shows context menu (see LPP-2584 - Lzpix: problem with multi-selecting images in Safari 2.0.4, dhtml)
             quirks['alt_key_sends_control'] = true;



More information about the Laszlo-checkins mailing list