parent
c926775719
commit
48c9e29eab
@ -1,31 +1,28 @@
|
|||||||
//try to add ajax data as query string to DELETE calls.
|
//try to add ajax data as query string to DELETE calls.
|
||||||
'use strict';
|
'use strict';
|
||||||
define(function () {
|
define(
|
||||||
|
[
|
||||||
|
'jquery'
|
||||||
|
], function ($) {
|
||||||
|
|
||||||
return function () {
|
var original = $.ajax;
|
||||||
|
|
||||||
var original = this.ajax;
|
$.ajax = function (xhr) {
|
||||||
this.ajax = function () {
|
|
||||||
|
|
||||||
var xhr = arguments[0];
|
|
||||||
|
|
||||||
//check if ajax call was made with data option
|
|
||||||
if (xhr && xhr.data && xhr.type === 'DELETE') {
|
if (xhr && xhr.data && xhr.type === 'DELETE') {
|
||||||
if (!xhr.url.contains('?')) {
|
|
||||||
xhr.url = xhr.url + '?' + $.param(xhr.data);
|
if (xhr.url.contains('?')) {
|
||||||
|
xhr.url += '&';
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
xhr.url = xhr.url + '&' + $.param(xhr.data);
|
xhr.url += '?';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
xhr.url += $.param(xhr.data);
|
||||||
|
|
||||||
delete xhr.data;
|
delete xhr.data;
|
||||||
}
|
}
|
||||||
if (xhr) {
|
|
||||||
xhr.headers = xhr.headers || {};
|
|
||||||
// xhr.headers.Authorization = window.NzbDrone.ApiKey;
|
|
||||||
}
|
|
||||||
|
|
||||||
return original.apply(this, arguments);
|
return original.apply(this, arguments);
|
||||||
};
|
};
|
||||||
};
|
});
|
||||||
});
|
|
||||||
|
Loading…
Reference in new issue