1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +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]; var xhr = arguments[0];
//check if ajax call was made with data option //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) { if (xhr.url.indexOf('?') === -1) {
xhr.url = xhr.url + '?' + $.param(xhr.data); xhr.url = xhr.url + '?' + $.param(xhr.data);
} }
@ -18,9 +18,6 @@
} }
} }
if (original) { return original.apply(this, arguments);
original.apply(this, arguments);
}
}; };
}()); }());