currently we just use AeroGear.ajax internally, so it doesn't matter what arguments are returned, but for simplicity's sake when migrating this to Pipeline, the success/error callbacks should have proper arguments
so a success function would look like
success: function( data, textStatus, xhrResponse )
error: function( err, textStatus, xhrResponse )
|