From 66ed733ce5abf64a0650e4359f1dff88c2dfd1b4 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 13 Mar 2005 17:01:59 +0000 Subject: Added Field.present, .focus, and .clear as JS convenience for working with forms. Removed link_to_display_toggle in favor of link_to_function "Cancel", "toggle_display("add_item_link", "add_item_form")" git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@896 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_view/helpers/javascript_helper.rb | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'actionpack/lib/action_view/helpers') diff --git a/actionpack/lib/action_view/helpers/javascript_helper.rb b/actionpack/lib/action_view/helpers/javascript_helper.rb index 05dd8b6bb3..bd22ffb0c0 100644 --- a/actionpack/lib/action_view/helpers/javascript_helper.rb +++ b/actionpack/lib/action_view/helpers/javascript_helper.rb @@ -4,21 +4,6 @@ module ActionView module Helpers # You must call <%= define_javascript_functions %> in your application before using these helpers. module JavascriptHelper - # Returns a link that'll toggle the visibility of the DOM objects which ids are mentioned in +tags+. If they're visible, we hide them, - # and vice versa. This is particularly useful for hiding and showing input and edit forms on in-page elements. - # - # Examples: - # link_to_toggle_display "Toggle controls", "control_box" - # link_to_toggle_display "Add note", %w( add_link add_form ) - 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.merge(:href => "#", :onclick => "#{toggle_functions}#{html_options[:onclick]}; return false;") - ) - end - # Returns a link that'll trigger a javascript +function+ using the onclick handler and return false after the fact. # # Examples: -- cgit v1.2.3