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 left: $(info.elem).width() + off.left
}); });
self.submit.onclick = function(ev) { self.submit.onclick = function(ev) {
$.ajax({ var post = self.makePost(info);
data: self.makePost(info), var a = $.ajax({
data: post,
url: info.url, url: info.url,
method: "POST", method: "POST",
dataType: "json" dataType: "json"