summaryrefslogtreecommitdiffstats
path: root/app/views/attachments/upload.js.erb
blob: 6b804a62b9ea01538e914a6a1770805d603065f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 %>