mirror of
https://github.com/redmine/redmine.git
synced 2025-11-16 02:06:04 +01:00
git-svn-id: http://svn.redmine.org/redmine/trunk@15917 e93f8b46-1217-0410-a6f0-8f06a7374b81
15 lines
512 B
Plaintext
15 lines
512 B
Plaintext
var fileSpan = $('#attachments_<%= j params[:attachment_id] %>');
|
|
<% if @attachment.new_record? %>
|
|
fileSpan.hide();
|
|
alert("<%= escape_javascript @attachment.errors.full_messages.join(', ') %>");
|
|
<% else %>
|
|
fileSpan.find('input.token').val('<%= j @attachment.token %>');
|
|
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 %>
|