1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-05 02:22:31 +01:00
Radarr/UI/Mixins/backbone.ajax.js

29 lines
707 B
JavaScript
Raw Normal View History

2013-02-22 06:56:46 +01:00
//try to add ajax data as query string to DELETE calls.
2013-06-22 08:24:24 +02:00
'use strict';
2013-06-21 07:35:56 +02:00
define(function () {
2013-02-16 00:38:53 +01:00
2013-06-21 07:35:56 +02:00
return function () {
2013-02-16 00:38:53 +01:00
2013-06-21 07:35:56 +02:00
var original = this.ajax;
this.ajax = function () {
2013-02-16 00:38:53 +01:00
2013-06-21 07:35:56 +02:00
var xhr = arguments[0];
2013-02-16 00:38:53 +01:00
2013-06-21 07:35:56 +02:00
//check if ajax call was made with data option
if (xhr && xhr.data && xhr.type === 'DELETE') {
if (xhr.url.indexOf('?') === -1) {
xhr.url = xhr.url + '?' + $.param(xhr.data);
}
else {
xhr.url = xhr.url + '&' + $.param(xhr.data);
}
delete xhr.data;
2013-02-16 00:38:53 +01:00
}
2013-06-21 07:35:56 +02:00
return original.apply(this, arguments);
};
2013-02-16 00:38:53 +01:00
};
2013-06-21 07:35:56 +02:00
});