Skip to content

Commit

Permalink
Fix autocomplete problem
Browse files Browse the repository at this point in the history
Updated the form to not auto complete what we wrote before by removing action="" and adding autocomplete="off"
Making so now, especially when I'm on mobile I don't get my screen filled with previously typed sentences.

This commit is related to erming#532
  • Loading branch information
nomadturk committed Jan 8, 2016
1 parent 9572bbd commit 504c480
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ <h2>About Shout</h2>
</div>
</div>
</div>
<form id="form" action="">
<form id="form" autocomplete="off">
<div class="inner">
<button id="submit" type="submit">
Send
Expand Down

0 comments on commit 504c480

Please sign in to comment.