Change processGet jquery call get to post - #959
This commit is contained in:
parent
b2960f55e5
commit
7ab1748be6
|
@ -674,7 +674,7 @@ echo '</form>';
|
|||
}
|
||||
|
||||
var processGet = function (params, callback) {
|
||||
return jQuery.get(ajaxPage, params, 'json')
|
||||
return jQuery.post(ajaxPage, params, 'json')
|
||||
.done(function (data, textStatus, jqXHR) {
|
||||
try {
|
||||
data = JSON.parse(data);
|
||||
|
|
Loading…
Reference in New Issue