tracks/app/views/todos/toggle_star.js.erb
2011-07-30 18:52:11 +02:00

5 lines
230 B
Text

<%- if @saved -%>
$('div#line_todo_<%= @todo.id %> a.star_item img').toggleClass('starred');
<%- else -%>
TracksPages.page_notify('error', '<%= t('todos.error_starring', :description => @todo.description) %>', 8);
<%- end -%>