Have a Star option on task entry screens #928

This commit is contained in:
Demian Gemperli 2011-07-30 18:52:11 +02:00
parent f4a07110ff
commit c45b11dc70
8 changed files with 29 additions and 17 deletions

View file

@ -427,8 +427,7 @@ module TodosHelper
private
def image_tag_for_star(todo)
class_str = todo.starred? ? "starred_todo" : "unstarred_todo"
image_tag("blank.png", :title =>t('todos.star_action'), :class => class_str, :id => "star_img_"+todo.id.to_s)
image_tag("blank.png", :title =>t('todos.star_action'), :class => "todo_star"+(todo.starred? ? " starred":""), :id => "star_img_"+todo.id.to_s)
end
end