Ok, seems the documentation misled me on this one. Just skimmed
through mootools-core and noticed this:
var methods = {};
['get', 'post', 'put', 'delete', 'GET', 'POST', 'PUT',
'DELETE'].each(function(method){
methods[method] = function(data){
return this.send({
data: data,
method: method
});
};
});
On Oct 26, 3:51 pm, Oskar Krawczyk <[email protected]> wrote:
> It seems the Request class is fixed to POST and GET methods - is this the
> case? Has anyone tried doing a DELETE request? I was just dropped into a
> Rails project and it seems they're using DELETE methods all over the place.
>
> O.