diff options
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/action_view_overview.md | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/guides/source/action_view_overview.md b/guides/source/action_view_overview.md index 02ef32d66e..e76158e259 100644 --- a/guides/source/action_view_overview.md +++ b/guides/source/action_view_overview.md @@ -1361,18 +1361,6 @@ date_field_tag "dob" Provides functionality for working with JavaScript in your views. -#### button_to_function - -Returns a button that'll trigger a JavaScript function using the onclick handler. Examples: - -```ruby -button_to_function "Greeting", "alert('Hello world!')" -button_to_function "Delete", "if (confirm('Really?')) do_delete()" -button_to_function "Details" do |page| - page[:details].visual_effect :toggle_slide -end -``` - #### define_javascript_functions Includes the Action Pack JavaScript libraries inside a single `script` tag. @@ -1397,15 +1385,6 @@ alert('All is good') </script> ``` -#### link_to_function - -Returns a link that will trigger a JavaScript function using the onclick handler and return false after the fact. - -```ruby -link_to_function "Greeting", "alert('Hello world!')" -# => <a onclick="alert('Hello world!'); return false;" href="#">Greeting</a> -``` - ### NumberHelper Provides methods for converting numbers into formatted strings. Methods are provided for phone numbers, currency, percentage, precision, positional notation, and file size. |