1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add accept-charset to the output of form_with in JS guide [ci skip]

This commit is contained in:
Yoshiyuki Hirano 2017-10-15 02:11:18 +09:00
parent 5668dc6b18
commit 1ac2a2292f

View file

@ -174,7 +174,7 @@ passing the `:local` option `form_with`.
This will generate the following HTML:
```html
<form action="/articles" method="post" data-remote="true">
<form action="/articles" accept-charset="UTF-8" method="post" data-remote="true">
...
</form>
```