Delete xhr.data before sending

I did this all by myself, kayone did not assist in any way, shape or form.
This commit is contained in:
Mark McDowall 2013-07-11 15:38:15 -07:00
parent f3194279e4
commit f6ec58ecd5
1 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,8 @@ define(function () {
else {
xhr.url = xhr.url + '&' + $.param(xhr.data);
}
delete xhr.data;
}
return original.apply(this, arguments);