diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-02-19 12:20:47 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-02-19 12:20:47 +0100 |
commit | 4920373050f6d911154632571446f0468ea7c920 (patch) | |
tree | 242173c74e4523c2db71c8d921735eef8c3bd38e | |
parent | 7330f61a947f94865ab3d934bd1d4c425c737b38 (diff) | |
parent | c196e59e882357948ea8b2877d5153614f5143a1 (diff) | |
download | nextcloud-server-4920373050f6d911154632571446f0468ea7c920.tar.gz nextcloud-server-4920373050f6d911154632571446f0468ea7c920.zip |
Merge pull request #7278 from owncloud/issue/7277
Add event parameter to keyup event
-rw-r--r-- | settings/js/personal.js | 2 |
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 |