530
574
* \param content_type String, optional. Only applies if method is "POST".
531
575
* May be "application/x-www-form-urlencoded" or "multipart/form-data".
532
576
* Defaults to "application/x-www-form-urlencoded".
535
function ajax_call(app, path, args, method, content_type)
578
function ajax_call(callback, app, path, args, method, content_type)
537
580
if (content_type != "multipart/form-data")
538
581
content_type = "application/x-www-form-urlencoded";