Author: jleroux
Date: Thu Jul 25 07:18:03 2013
New Revision: 1506828
URL:
http://svn.apache.org/r1506828Log:
Rhaaa another wrong C/P, better use patches really :/
Modified:
ofbiz/trunk/framework/images/webapp/images/selectall.js
Modified: ofbiz/trunk/framework/images/webapp/images/selectall.js
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/images/webapp/images/selectall.js?rev=1506828&r1=1506827&r2=1506828&view=diff==============================================================================
--- ofbiz/trunk/framework/images/webapp/images/selectall.js (original)
+++ ofbiz/trunk/framework/images/webapp/images/selectall.js Thu Jul 25 07:18:03 2013
@@ -352,7 +352,7 @@ function ajaxSubmitFormUpdateAreas(form,
}
updateFunction = function(data) {
if (data._ERROR_MESSAGE_LIST_ != undefined || data._ERROR_MESSAGE_ != undefined) {
- if (jQuery('#content-messages').length == 0) {
+ if (!jQuery('#content-messages').length) {
//add this div just after app-navigation
if(jQuery('#content-main-section')){
jQuery('#content-main-section' ).before('<div id="content-messages" onclick="hideErrorContainer()"></div>');
@@ -367,8 +367,8 @@ function ajaxSubmitFormUpdateAreas(form,
jQuery('#content-messages' ).html(data._ERROR_MESSAGE_);
}
jQuery('#content-messages').fadeIn('fast');
- }else {
- if (jQuery('#content-messages').length == 0) {
+ } else {
+ if (jQuery('#content-messages').length) {
jQuery('#content-messages').html('');
jQuery('#content-messages').removeClass('errorMessage').fadeIn("fast");
}