1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 20:12:41 +02:00

fixed backbone ajax differed

This commit is contained in:
kay.one 2013-06-01 12:30:41 -07:00
parent 1613643307
commit f7c78da4ed

View File

@ -9,7 +9,7 @@
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.indexOf('?') === -1) {
xhr.url = xhr.url + '?' + $.param(xhr.data);
}
@ -18,9 +18,6 @@
}
}
if (original) {
original.apply(this, arguments);
}
return original.apply(this, arguments);
};
}());
}());