Merge pull request #7278 from owncloud/issue/7277
Add event parameter to keyup event
This commit is contained in:
commit
4920373050
|
@ -163,7 +163,7 @@ $(document).ready(function(){
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
$('#email').keyup(function(){
|
$('#email').keyup(function(event){
|
||||||
if ($('#email').val() !== '' ){
|
if ($('#email').val() !== '' ){
|
||||||
// if this is the enter key changeEmailAddress() is already invoked
|
// if this is the enter key changeEmailAddress() is already invoked
|
||||||
// so it doesn't need to be triggered again
|
// so it doesn't need to be triggered again
|
||||||
|
|
Loading…
Reference in New Issue