1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Mixins/jquery.ajax.js

32 lines
858 B
JavaScript
Raw Normal View History

2013-02-22 08:56:46 +03:00
//try to add ajax data as query string to DELETE calls.
2013-06-22 09:24:24 +03:00
'use strict';
2013-06-21 08:35:56 +03:00
define(function () {
2013-02-16 02:38:53 +03:00
2013-06-21 08:35:56 +03:00
return function () {
2013-02-16 02:38:53 +03:00
2013-06-21 08:35:56 +03:00
var original = this.ajax;
this.ajax = function () {
2013-02-16 02:38:53 +03:00
2013-06-21 08:35:56 +03:00
var xhr = arguments[0];
2013-02-16 02:38:53 +03:00
2013-06-21 08:35:56 +03:00
//check if ajax call was made with data option
if (xhr && xhr.data && xhr.type === 'DELETE') {
2013-09-12 00:38:35 +03:00
if (!xhr.url.contains('?')) {
2013-06-21 08:35:56 +03:00
xhr.url = xhr.url + '?' + $.param(xhr.data);
}
else {
xhr.url = xhr.url + '&' + $.param(xhr.data);
}
delete xhr.data;
2013-02-16 02:38:53 +03:00
}
2013-09-20 10:31:02 +03:00
if (xhr) {
2013-09-21 01:19:48 +03:00
xhr.headers = xhr.headers || {};
xhr.headers['Authorization'] = window.NzbDrone.ApiKey;
2013-09-20 10:31:02 +03:00
}
2013-02-16 02:38:53 +03:00
2013-06-21 08:35:56 +03:00
return original.apply(this, arguments);
};
2013-02-16 02:38:53 +03:00
};
});