summaryrefslogtreecommitdiffstats
path: root/settings/js/personal.js
diff options
context:
space:
mode:
Diffstat (limited to 'settings/js/personal.js')
-rw-r--r--settings/js/personal.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/js/personal.js b/settings/js/personal.js
index 7b9268ca813..010f0fc0a79 100644
--- a/settings/js/personal.js
+++ b/settings/js/personal.js
@@ -172,7 +172,7 @@ $(document).ready(function(){
});
$('#email').keypress(function(event){
- // check for enter key and non empyt email
+ // check for enter key and non empty email
if (event.keyCode === 13 && $('#email').val() !== '' ){
event.preventDefault()
// clear timeout of previous keyup event - prevents duplicate changeEmailAddress call