Sha256: 4f5504c87c7fe72b16d9d5debb82de20908e9b21db965bf6a8093e44cf056ccc
Contents?: true
Size: 597 Bytes
Versions: 34
Compression:
Stored size: 597 Bytes
Contents
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 %>
Version data entries
34 entries across 34 versions & 1 rubygems