Archived
1
0
This commit is contained in:
Jeff Becker 2017-01-16 14:51:28 -05:00
parent 52d401270f
commit d000fcc993

View File

@ -150,8 +150,9 @@ ReplyBox.prototype.show = function(info) {
left: $(info.elem).width() + off.left
});
self.submit.onclick = function(ev) {
$.ajax({
data: self.makePost(info),
var post = self.makePost(info);
var a = $.ajax({
data: post,
url: info.url,
method: "POST",
dataType: "json"