Skip to content

Commit

Permalink
Merge pull request honza#317 from Carif/master
Browse files Browse the repository at this point in the history
HTML form : change get to post, remove accept-charset
  • Loading branch information
SirVer committed Mar 4, 2014
2 parents 9b0e054 + a93d2e8 commit 85801ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions snippets/html.snippets
Original file line number Diff line number Diff line change
Expand Up @@ -361,15 +361,15 @@ snippet footer#
${0}
</footer>
snippet form
<form action="${1}" method="${2:get}" accept-charset="utf-8">
<form action="${1}" method="${2:post}">
${0}
</form>
snippet form.
<form class="${1}" action="${2}" method="${3:get}" accept-charset="utf-8">
<form class="${1}" action="${2}" method="${3:post}">
${0}
</form>
snippet form#
<form id="${1}" action="${2}" method="${3:get}" accept-charset="utf-8">
<form id="${1}" action="${2}" method="${3:post}">
${0}
</form>
snippet h1
Expand Down

0 comments on commit 85801ca

Please sign in to comment.