Guest User

Untitled

a guest
Feb 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <ul id="todo-list" style="cursor: move">
  2. <% @task.todos.each do |f| %>
  3. <li id="todo_<%= f.id %>">
  4. <%= f.name %>
  5. </li>
  6. <% end %>
  7. </ul>
  8.  
  9. <%= sortable_element "todo-list",
  10. :url => {:action => "sort", :id => @task},
  11. :complete => visual_effect(:highlight, "todo-list")
  12. %>
Add Comment
Please, Sign In to add comment