]> source.dussan.org Git - redmine.git/commitdiff
Adds titles on icon links.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 14 Mar 2017 18:25:23 +0000 (18:25 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 14 Mar 2017 18:25:23 +0000 (18:25 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@16403 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/my_helper.rb
app/views/my/blocks/_issues.erb
app/views/my/blocks/_timelog.html.erb

index 2a20a7bf2e88eff7189a64ac9821e8e2fe479a91..5181def2de48c435eb5c91adcdadeeada48941a1 100644 (file)
@@ -34,8 +34,11 @@ module MyHelper
   def render_block(block, user)
     content = render_block_content(block, user)
     if content.present?
-      handle = content_tag('span', '', :class => 'sort-handle')
-      close = link_to(l(:button_delete), {:action => "remove_block", :block => block}, :remote => true, :method => 'post', :class => "icon-only icon-close")
+      handle = content_tag('span', '', :class => 'sort-handle', :title => l(:button_move))
+      close = link_to(l(:button_delete),
+                      {:action => "remove_block", :block => block},
+                      :remote => true, :method => 'post',
+                      :class => "icon-only icon-close", :title => l(:button_delete))
       content = content_tag('div', handle + close, :class => 'contextual') + content
 
       content_tag('div', content, :class => "mypage-box", :id => "block-#{block}")
index bbd10af3306cee2ff5ba7cdf310bfa502abcc62c..1b208a297b28851a750a9727478eedeba9223926 100644 (file)
@@ -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>
index 23ccc8271917568a764b436017ad071017d29d71..e5e36612dd5ebf7cc97968fae62c0f124ce8dc6f 100644 (file)
@@ -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>