AJAX Library

This library contains wrapper-methods for the original jquery AJAX methods ('ajax', 'post', 'get').

Source:

Methods

(static) ajax(parameters) → {object}

Wrapper for the jquery "ajax" method.

Parameters:
Name Type Description
parameters object

AJAX-config object which gets merged with the default settings from config.

Source:
Returns:

Returns an ajax compatible promise object.

Type
object

(static) delete(parameters) → {object}

Wrapper function for the jquery "post" method.

Parameters:
Name Type Description
parameters object

AJAX-config object which gets merged with the default settings from config.

Source:
Returns:

Returns an ajax compatible promise object.

Type
object

(static) get(parameters) → {object}

Wrapper function for the jquery "get" method.

Parameters:
Name Type Description
parameters object

AJAX-config object which will be merged with the default settings from config.

Source:
Returns:

Returns an ajax compatible promise object.

Type
object

(static) post(parameters) → {object}

Wrapper function for the jquery "post" method.

Parameters:
Name Type Description
parameters object

AJAX-config object which gets merged with the default settings from config.

Source:
Returns:

Returns an ajax compatible promise object.

Type
object

(static) put(parameters) → {object}

Wrapper function for the jquery "post" method.

Parameters:
Name Type Description
parameters object

AJAX-config object which gets merged with the default settings from config.

Source:
Returns:

Returns an ajax compatible promise object.

Type
object