mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Respect :onclick in link_to_toggle_display
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@891 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -5,10 +5,11 @@ module ActionView
|
||||
# You must call <%= define_javascript_functions %> in your application before using these helpers.
|
||||
module JavascriptHelper
|
||||
def link_to_toggle_display(name, tags, html_options = {})
|
||||
html_options.symbolize_keys!
|
||||
toggle_functions = [ tags ].flatten.collect { |tag| "toggle_display_by_id('#{tag}'); " }.join
|
||||
content_tag(
|
||||
"a", name,
|
||||
html_options.symbolize_keys.merge(:href => "#", :onclick => "#{toggle_functions}; #{html_options['onclick']}; return false;")
|
||||
html_options.merge(:href => "#", :onclick => "#{toggle_functions}#{html_options[:onclick]}; return false;")
|
||||
)
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user