Browse Source

cleanup: rubocop: fix Layout/AlignArguments in ApplicationHelper#toggle_checkboxes_link

git-svn-id: http://svn.redmine.org/redmine/trunk@18869 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.1.0
Toshi MARUYAMA 4 years ago
parent
commit
c82ce3e20c
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      app/helpers/application_helper.rb

+ 3
- 3
app/helpers/application_helper.rb View File

@@ -1426,9 +1426,9 @@ module ApplicationHelper

def toggle_checkboxes_link(selector)
link_to_function '',
"toggleCheckboxesBySelector('#{selector}')",
:title => "#{l(:button_check_all)} / #{l(:button_uncheck_all)}",
:class => 'icon icon-checked'
"toggleCheckboxesBySelector('#{selector}')",
:title => "#{l(:button_check_all)} / #{l(:button_uncheck_all)}",
:class => 'icon icon-checked'
end

def progress_bar(pcts, options={})

Loading…
Cancel
Save