From fb955f1eaf6b1fdbb321ec55f40f4a4806d62fd8 Mon Sep 17 00:00:00 2001
From: ZENATI YASSINE <zenati@informatique.univ-paris-diderot.fr>
Date: Sat, 19 Apr 2014 18:05:18 +0200
Subject: [ci skip] Added example for email_field_tag method

---
 actionview/lib/action_view/helpers/form_tag_helper.rb | 13 +++++++++++++
 1 file changed, 13 insertions(+)

(limited to 'actionview/lib')

diff --git a/actionview/lib/action_view/helpers/form_tag_helper.rb b/actionview/lib/action_view/helpers/form_tag_helper.rb
index 66c9e20682..47d4c04b09 100644
--- a/actionview/lib/action_view/helpers/form_tag_helper.rb
+++ b/actionview/lib/action_view/helpers/form_tag_helper.rb
@@ -698,6 +698,19 @@ module ActionView
       #
       # ==== Options
       # * Accepts the same options as text_field_tag.
+      #
+      # ==== Examples
+      #   email_field_tag 'name'
+      #   # => <input id="name" name="name" type="email" />
+      #
+      #   email_field_tag 'email', 'email@example.com'
+      #   # => <input id="email" name="email" type="email" value="email@example.com" />
+      #
+      #   email_field_tag 'email', nil, class: 'special_input'
+      #   # => <input class="special_input" id="email" name="email" type="email" />
+      #
+      #   email_field_tag 'email', 'email@example.com', class: 'special_input', disabled: true
+      #   # => <input disabled="disabled" class="special_input" id="email" name="email" type="email" value="email@example.com" />
       def email_field_tag(name, value = nil, options = {})
         text_field_tag(name, value, options.stringify_keys.update("type" => "email"))
       end
-- 
cgit v1.2.3