X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fresources%2Fstatic%2Fjavascript%2Fsone.js;h=9c082f178b43250365d13a740bee9fe9a51a9104;hp=f872daeaa916bcb0151c3d815f0217fb9d55ff18;hb=83c775be91db2ac0b95afa4976a8c9bdfa611d31;hpb=bd04c3d0948baacb29153d52bcb9f0a0b8b040dc diff --git a/src/main/resources/static/javascript/sone.js b/src/main/resources/static/javascript/sone.js index f872dae..9c082f1 100644 --- a/src/main/resources/static/javascript/sone.js +++ b/src/main/resources/static/javascript/sone.js @@ -17,23 +17,6 @@ function ajaxGet(url, data, successCallback, errorCallback) { })(url, data, successCallback, errorCallback); } -function ajaxPost(url, data, successCallback, errorCallback) { - (function(url, data, successCallback, errorCallback) { - $.ajax({"type": "POST", "url": url, "data": data, "dataType": "json", "success": function(data, textStatus, xmlHttpRequest) { - ajaxSuccess(); - if (typeof successCallback != "undefined") { - successCallback(data, textStatus); - } - }, "error": function(xmlHttpRequest, textStatus, errorThrown) { - if (typeof errorCallback != "undefined") { - errorCallback(); - } else { - ajaxError(); - } - }}); - })(url, data, successCallback, errorCallback); -} - function registerInputTextareaSwap(inputElement, defaultText, inputFieldName, optional, dontUseTextarea) { $(inputElement).each(function() { textarea = $(dontUseTextarea ? "" : "").blur(function() { @@ -880,7 +863,7 @@ function ajaxifyNotification(notification) { notification.find(".text").addClass("hidden"); } notification.find("form.mark-as-read button").click(function() { - ajaxPost("markAsKnown.ajax", {"formPassword": getFormPassword(), "type": $(":input[name=type]", this.form).val(), "id": $(":input[name=id]", this.form).val()}); + ajaxGet("markAsKnown.ajax", {"formPassword": getFormPassword(), "type": $(":input[name=type]", this.form).val(), "id": $(":input[name=id]", this.form).val()}); }); notification.find("a[class^='link-']").each(function() { linkElement = $(this);