Fix AJAX handler context

This commit is contained in:
Ilja Kartašov 2019-04-26 15:50:40 +02:00
parent 4ec326aa57
commit ca87f72b7f
1 changed files with 1 additions and 2 deletions

View File

@ -455,8 +455,6 @@ var gCore = {
function Contact()
{
var t = this;
this.email = $('#feedback__email');
this.msg = $('#feedback__msg');
@ -473,6 +471,7 @@ function Contact()
};
this.onSubmit = function(evt) {
var t = this;
$.ajax({
url: '/hook/feedback/',
handler: function(httpStatus, content) {t.onLoad(httpStatus, content)},