summaryrefslogtreecommitdiffstats
path: root/settings/js
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-02-19 10:25:52 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-02-19 10:25:52 +0100
commitc196e59e882357948ea8b2877d5153614f5143a1 (patch)
tree6a2e1a8152ac8a09254edf6e66c109aa3ce084ea /settings/js
parente517e642befa119b77521a2e15571ee6932046ad (diff)
downloadnextcloud-server-c196e59e882357948ea8b2877d5153614f5143a1.tar.gz
nextcloud-server-c196e59e882357948ea8b2877d5153614f5143a1.zip
Add event parameter to keyup event
Fix issue #7277
Diffstat (limited to 'settings/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 3b876467756..ef261b50bbc 100644
--- a/settings/js/personal.js
+++ b/settings/js/personal.js
@@ -163,7 +163,7 @@ $(document).ready(function(){
});
- $('#email').keyup(function(){
+ $('#email').keyup(function(event){
if ($('#email').val() !== '' ){
// if this is the enter key changeEmailAddress() is already invoked
// so it doesn't need to be triggered again