aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/prototype_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_view/helpers/prototype_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/prototype_helper.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/prototype_helper.rb b/actionpack/lib/action_view/helpers/prototype_helper.rb
index 89d9ea7f2d..f1e67f05f4 100644
--- a/actionpack/lib/action_view/helpers/prototype_helper.rb
+++ b/actionpack/lib/action_view/helpers/prototype_helper.rb
@@ -454,6 +454,11 @@ module ActionView
call 'Element.hide', *ids
end
+ # Toggles the visibility of the DOM elements with the given +ids+.
+ def toggle(*ids)
+ call 'Element.toggle', *ids
+ end
+
# Displays an alert dialog with the given +message+.
def alert(message)
call 'alert', message