##// END OF EJS Templates
fix British English version 'field_effective_date' (#14680, #22315)...
fix British English version 'field_effective_date' (#14680, #22315) r15406 has inconsistent in en-GB.yml and en.yml. git-svn-id: http://svn.redmine.org/redmine/trunk@15410 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11612:7e41730293c5
r15028:84e4bae59a9a
Show More
upload.js.erb
14 lines | 597 B | text/plain | TextLexer
var fileSpan = $('#attachments_<%= j params[:attachment_id] %>');
<% if @attachment.new_record? %>
fileSpan.hide();
alert("<%= escape_javascript @attachment.errors.full_messages.join(', ') %>");
<% else %>
$('<input>', { type: 'hidden', name: 'attachments[<%= j params[:attachment_id] %>][token]' } ).val('<%= j @attachment.token %>').appendTo(fileSpan);
fileSpan.find('a.remove-upload')
.attr({
"data-remote": true,
"data-method": 'delete',
href: '<%= j attachment_path(@attachment, :attachment_id => params[:attachment_id], :format => 'js') %>'
})
.off('click');
<% end %>