Add debug output to feedback form

This commit is contained in:
Ilja Kartašov 2019-04-26 15:05:36 +02:00
parent 0444ae2474
commit 4ec326aa57
1 changed files with 1 additions and 0 deletions

View File

@ -479,6 +479,7 @@ function Contact()
data: {email: this.email.value(), msg: this.msg.value()},
method: 'POST'
});
$.log('Email: '+this.email.value() +'; MSG: '+this.msg.value());
event.preventDefault();
return false;
}