aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/form_helpers.md
diff options
context:
space:
mode:
authorAnton Chuchkalov <a2new@yandex.ru>2015-07-30 14:48:55 +0200
committerAnton Chuchkalov <a2new@yandex.ru>2015-07-30 14:48:55 +0200
commitdc4b03fe9af420f882b5c707a618e3eb1b6aaa86 (patch)
tree538aba0bf46a9167793f3ab69b9c40afbbcd1f30 /guides/source/form_helpers.md
parent10e994cc07dbd4ff87db225f15850197a9c6bb18 (diff)
downloadrails-dc4b03fe9af420f882b5c707a618e3eb1b6aaa86.tar.gz
rails-dc4b03fe9af420f882b5c707a618e3eb1b6aaa86.tar.bz2
rails-dc4b03fe9af420f882b5c707a618e3eb1b6aaa86.zip
Remove yepnope mention from form helpers guide because it's deprecated [ci skip]
Diffstat (limited to 'guides/source/form_helpers.md')
-rw-r--r--guides/source/form_helpers.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/guides/source/form_helpers.md b/guides/source/form_helpers.md
index 8f7d97844e..84a8d695cb 100644
--- a/guides/source/form_helpers.md
+++ b/guides/source/form_helpers.md
@@ -211,9 +211,8 @@ IMPORTANT: The search, telephone, date, time, color, datetime, datetime-local,
month, week, URL, email, number and range inputs are HTML5 controls.
If you require your app to have a consistent experience in older browsers,
you will need an HTML5 polyfill (provided by CSS and/or JavaScript).
-There is definitely [no shortage of solutions for this](https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-Browser-Polyfills), although a couple of popular tools at the moment are
-[Modernizr](http://www.modernizr.com/) and [yepnope](http://yepnopejs.com/),
-which provide a simple way to add functionality based on the presence of
+There is definitely [no shortage of solutions for this](https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-Browser-Polyfills), although a popular tool at the moment is
+[Modernizr](http://www.modernizr.com/), which provides a simple way to add functionality based on the presence of
detected HTML5 features.
TIP: If you're using password input fields (for any purpose), you might want to configure your application to prevent those parameters from being logged. You can learn about this in the [Security Guide](security.html#logging).