You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
631 B
28 lines
631 B
12 years ago
|
//try to add ajax data as query string to DELETE calls.
|
||
12 years ago
|
(function (){
|
||
|
|
||
|
var original = Backbone.ajax;
|
||
|
|
||
|
Backbone.ajax = function (){
|
||
|
|
||
|
var xhr = arguments[0];
|
||
|
|
||
|
//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);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (original){
|
||
|
original.apply (this, arguments);
|
||
|
}
|
||
|
|
||
|
};
|
||
12 years ago
|
} ());
|