##// END OF EJS Templates
Use css pseudo-classes instead of cycle("odd", "even") (#15361)....
Use css pseudo-classes instead of cycle("odd", "even") (#15361). Patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@16249 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15535:ef45304817e9
r15867:9814dcf231b5
Show More
upload.js.erb
14 lines | 512 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 %>
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 %>