Skip to content
This repository has been archived by the owner on Mar 6, 2023. It is now read-only.

Commit

Permalink
Changed the default debounce time for updating email addresses to 1 s…
Browse files Browse the repository at this point in the history
…econd
  • Loading branch information
niemyjski committed Feb 3, 2016
1 parent 418d6d9 commit 2bc88c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/account/manage.tpl.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<input id="email" name="email" type="email" class="form-control" x-autocompletetype="email" autocorrect="off" spellcheck="false"
placeholder="Email Address"
ng-model="vm.user.email_address"
ng-model-options="{ debounce: 500 }"
ng-model-options="{ debounce: 1000 }"
ng-change="vm.saveEmailAddress()"
email-address-available-validator
required/>
Expand Down
2 changes: 1 addition & 1 deletion src/app/auth/signup.tpl.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ <h4>Create an account</h4>
<input id="email" name="email" type="email" class="form-control" placeholder="Email address (no spam)"
x-autocompletetype="email" autocorrect="off" spellcheck="false"
ng-model="vm.user.email"
ng-model-options="{ debounce: 500 }"
ng-model-options="{ debounce: 1000 }"
email-address-available-validator
ng-required="true" />

Expand Down

0 comments on commit 2bc88c3

Please sign in to comment.