diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-03-19 21:39:21 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-03-19 21:39:21 +0000 |
commit | 0cccce0c4327c5a6bc05c36263c4c474f54b6b34 (patch) | |
tree | 2c63cbef34e72969a6fa49f94b289c13f2e81497 /app | |
parent | 43fc812e0ebc029b4c959e517125d2baef23c26c (diff) | |
download | redmine-0cccce0c4327c5a6bc05c36263c4c474f54b6b34.tar.gz redmine-0cccce0c4327c5a6bc05c36263c4c474f54b6b34.zip |
Change the tick image and replace the issue selection pencil with a small tick.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1276 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/issues/_list.rhtml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/issues/_list.rhtml b/app/views/issues/_list.rhtml index 91390ac67..000f79853 100644 --- a/app/views/issues/_list.rhtml +++ b/app/views/issues/_list.rhtml @@ -1,7 +1,8 @@ <% form_tag({}) do -%> <table class="list issues"> <thead><tr> - <th><%= link_to image_tag('edit.png'), {}, :onclick => 'toggleIssuesSelection(this.up("form")); return false;' %> + <th><%= link_to image_tag('toggle_check.png'), {}, :onclick => 'toggleIssuesSelection(this.up("form")); return false;', + :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %> </th> <%= sort_header_tag("#{Issue.table_name}.id", :caption => '#', :default_order => 'desc') %> <% query.columns.each do |column| %> |