Browse Source

shorten long line of GroupsHelper

git-svn-id: http://svn.redmine.org/redmine/trunk@20138 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.2.0
Toshi MARUYAMA 3 years ago
parent
commit
05c532bded
1 changed files with 12 additions and 3 deletions
  1. 12
    3
      app/helpers/groups_helper.rb

+ 12
- 3
app/helpers/groups_helper.rb View File

@@ -36,9 +36,18 @@ module GroupsHelper
content_tag('div', principals_check_box_tags('user_ids[]', principals), :id => 'principals'),
:class => 'objects-selection'
)
links = pagination_links_full(principal_pages, principal_count, :per_page_links => false) {|text, parameters, options|
link_to text, autocomplete_for_user_group_path(group, parameters.merge(:q => params[:q], :format => 'js')), :remote => true
}
links =
pagination_links_full(principal_pages, principal_count,
:per_page_links => false) do |text, parameters, options|
link_to(
text,
autocomplete_for_user_group_path(
group,
parameters.merge(:q => params[:q], :format => 'js')
),
:remote => true
)
end
s + content_tag('span', links, :class => 'pagination')
end
end

Loading…
Cancel
Save