Wrap text
Report abuse
_songs.rhtml
|
|
<%= render :partial => 'songs/song', :collection => @album.songs, :locals => {:show_sort_handle => (@album.songs.size > 1)} %>
<%= sortable_element 'songs', :url => track_order_path(), :handle => 'song_drag_handle', :method => :put %>
|
_song.rhtml
|
|
<%= image_tag('/images/move-icon.gif', :size => '16x16', :class => 'song_drag_handle') if show_sort_handle%>
<%= song.name %>
|