Add event parameter to keyup event

Fix issue #7277
This commit is contained in:
Joas Schilling 2014-02-19 10:25:52 +01:00
Родитель e517e642be
Коммит c196e59e88
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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