summaryrefslogtreecommitdiffstats
path: root/app/views/custom_field_enumerations/create.js.erb
blob: a81da16cb98c8237863033d9237503be6753ca38 (plain)
1
2
3
4
5
6
7
8
9
$('#errorExplanation').remove();

<% if @value.valid? %>
$('#content').html('<%= escape_javascript(render(:template => 'custom_field_enumerations/index')) %>');
<% else %>
$('form#add-element').prepend('<%= escape_javascript(error_messages_for(@value)) %>');
<% end %>

$('#custom_field_enumeration_name').focus();