.animate() is not available here, just set set the color directly

This commit is contained in:
Nathan Gray 2012-09-26 16:30:21 +00:00
parent c87d057676
commit d986ef7a6d

View File

@ -349,7 +349,7 @@ class importexport_wizard_basic_import_csv
$j++;
}
$sel_options['field_mapping'] = array('--NONE--' => lang('none')) + $this->mapping_fields;
$GLOBALS['egw']->js->set_onload('$j("option[value=\'--NONE--\']:selected").closest("tr").animate({backgroundColor: "#ffff99"}, 1000);');
$GLOBALS['egw']->js->set_onload('$j("option[value=\'--NONE--\']:selected").closest("tr").css({backgroundColor: "#ffff99"});');
unset ($preserv['button']);
return $this->step_templates[$content['step']];
}