diff --git a/static/main.js b/static/main.js index 531a913..6e1d45c 100644 --- a/static/main.js +++ b/static/main.js @@ -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)},