fixed backbone ajax differed

This commit is contained in:
kay.one 2013-06-01 12:30:41 -07:00
parent 1613643307
commit f7c78da4ed
1 changed files with 3 additions and 6 deletions

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);
};
}());
}());