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

24 lines
604 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.
"use strict";
define(['jquery'], function () {
2013-02-16 02:38:53 +03:00
var original = Backbone.ajax;
Backbone.ajax = function () {
2013-02-16 02:38:53 +03:00
var xhr = arguments[0];
//check if ajax call was made with data option
2013-06-01 22:30:41 +03:00
if (xhr && xhr.data && xhr.type === 'DELETE') {
if (xhr.url.indexOf('?') === -1) {
2013-02-16 02:38:53 +03:00
xhr.url = xhr.url + '?' + $.param(xhr.data);
}
else {
2013-02-16 02:38:53 +03:00
xhr.url = xhr.url + '&' + $.param(xhr.data);
}
}
2013-06-01 22:30:41 +03:00
return original.apply(this, arguments);
2013-02-16 02:38:53 +03:00
};
});