webix.ajax del method and parameters

Hi,
I think that the method del of webix.ajax ignores the param argument:

from the _send function, line 2457 :

	if (params && mode==='GET'){
		url=url+(url.indexOf("?")!=-1 ? "&" : "?")+params;
		params = null;
	}

I patched my local files, can you do the same on the ‘official’ version?

Thanks!

Parameter is not ignored.
For POST, PUT, DELETE requests params are sent as request body.

x.send(params||null);