diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-10-23 16:45:27 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-10-23 16:45:27 +0000 |
commit | c29727dd39fa3fac888057c2ffe7059af96d523a (patch) | |
tree | 09abbb571a3f2c4c5a6cf007c5223ec5163d45bf /app/views/timelog | |
parent | 0b19f6ce51ae1fefe4f962151b3e1ed8bb7471c2 (diff) | |
download | redmine-c29727dd39fa3fac888057c2ffe7059af96d523a.tar.gz redmine-c29727dd39fa3fac888057c2ffe7059af96d523a.zip |
Replaces the link with a checkbox to select/unselect all items in the list.
git-svn-id: http://svn.redmine.org/redmine/trunk@14729 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/timelog')
-rw-r--r-- | app/views/timelog/_list.html.erb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/views/timelog/_list.html.erb b/app/views/timelog/_list.html.erb index d257375d5..7ec60cdbd 100644 --- a/app/views/timelog/_list.html.erb +++ b/app/views/timelog/_list.html.erb @@ -5,9 +5,7 @@ <thead> <tr> <th class="checkbox hide-when-print"> - <%= link_to image_tag('toggle_check.png'), - {}, - :onclick => 'toggleIssuesSelection(this); return false;', + <%= check_box_tag 'check_all', '', false, :class => 'toggle-selection', :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %> </th> <% @query.inline_columns.each do |column| %> |