Commit ccb1b6ef6ea54b9e504b2c3d38adf8e8099a972c
1 parent
37603e3e
Exists in
master
and in
29 other branches
container-block: add title to save and resize buttons
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
plugins/container_block/views/blocks/container.rhtml
... | ... | @@ -16,10 +16,10 @@ |
16 | 16 | |
17 | 17 | <% if edit_mode %> |
18 | 18 | <div class="button-bar"> |
19 | - <a href="#" onclick="toggleMoveContainerChildren(<%= block.id %>, <%= block.container_box.id %>); return false;" class="button icon-resize"></a> | |
19 | + <a href="#" onclick="toggleMoveContainerChildren(<%= block.id %>, <%= block.container_box.id %>); return false;" class="button icon-resize" title=<%= _('Resize blocks').to_json %>></a> | |
20 | 20 | <%= link_to_remote '', :url => { :controller => @controller.boxes_holder.kind_of?(Environment) ? 'container_block_plugin_admin' : 'container_block_plugin_myprofile', :action => 'saveWidths', :id => block.id }, |
21 | 21 | :with => "containerChildrenWidth(#{block.id}, #{block.container_box.id})", |
22 | - :html => {:class => "button icon-save container_block_save", :id => "container_block_save_#{block.id}" }, | |
22 | + :html => {:class => "button icon-save container_block_save", :id => "container_block_save_#{block.id}", :title => _('Save') }, | |
23 | 23 | :loading => "open_loading(DEFAULT_LOADING_MESSAGE);", |
24 | 24 | :loaded => "close_loading();", |
25 | 25 | :complete => "display_notice(request.responseText);"%> | ... | ... |