diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-03-14 18:25:23 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-03-14 18:25:23 +0000 |
commit | 6bc537f6f9d8318615fcc0098745645bb6ad79da (patch) | |
tree | db3abc9be5764715dd0ef3049bfda5f23fe0682c /app/views/my | |
parent | 6eaceed7b5557e12e191fe117baf4e8f81251c6a (diff) | |
download | redmine-6bc537f6f9d8318615fcc0098745645bb6ad79da.tar.gz redmine-6bc537f6f9d8318615fcc0098745645bb6ad79da.zip |
Adds titles on icon links.
git-svn-id: http://svn.redmine.org/redmine/trunk@16403 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/my')
-rw-r--r-- | app/views/my/blocks/_issues.erb | 2 | ||||
-rw-r--r-- | app/views/my/blocks/_timelog.html.erb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/my/blocks/_issues.erb b/app/views/my/blocks/_issues.erb index bbd10af33..1b208a297 100644 --- a/app/views/my/blocks/_issues.erb +++ b/app/views/my/blocks/_issues.erb @@ -1,7 +1,7 @@ <% issues, query = issues_items(block, settings) %> <div class="contextual"> - <%= link_to_function l(:label_options), "$('##{block}-settings').toggle();", :class => 'icon-only icon-settings' %> + <%= link_to_function l(:label_options), "$('##{block}-settings').toggle();", :class => 'icon-only icon-settings', :title => l(:label_options) %> </div> <h3> diff --git a/app/views/my/blocks/_timelog.html.erb b/app/views/my/blocks/_timelog.html.erb index 23ccc8271..e5e36612d 100644 --- a/app/views/my/blocks/_timelog.html.erb +++ b/app/views/my/blocks/_timelog.html.erb @@ -5,7 +5,7 @@ entries_by_day = entries.group_by(&:spent_on) <div class="contextual"> <%= link_to l(:button_log_time), new_time_entry_path, :class => "icon icon-add" if User.current.allowed_to?(:log_time, nil, :global => true) %> - <%= link_to_function l(:label_options), "$('#timelog-settings').toggle();", :class => 'icon-only icon-settings' %> + <%= link_to_function l(:label_options), "$('#timelog-settings').toggle();", :class => 'icon-only icon-settings', :title => l(:label_options) %> </div> <h3> |