Author: jleroux Date: Sat Mar 20 16:12:44 2010 New Revision: 925632 URL: http://svn.apache.org/viewvc?rev=925632&view=rev Log: Fix a typo I introduced while verifying/testing the code at r920061 . I did not notice it because it was still working correctly, certainly not in all cases...
Thanks to Atul Vani at "fade-background property doesn't work (just a typo error)" (https://issues.apache.org/jira/browse/OFBIZ-3570) - OFBIZ-3570. Modified: ofbiz/trunk/framework/images/webapp/images/fieldlookup.js Modified: ofbiz/trunk/framework/images/webapp/images/fieldlookup.js URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/images/webapp/images/fieldlookup.js?rev=925632&r1=925631&r2=925632&view=diff ============================================================================== --- ofbiz/trunk/framework/images/webapp/images/fieldlookup.js (original) +++ ofbiz/trunk/framework/images/webapp/images/fieldlookup.js Sat Mar 20 16:12:44 2010 @@ -192,7 +192,7 @@ var FieldLookupPopup = Class.create({ CURRENT_LOOKUP.removeLayer(); } //fade the background if the flag is set - if (!fadeBackground != "false") { + if (fadeBackground != "false") { this.createFadedBackground(); } //set dimension isn't set, set default parameters

