/** * External Data & Services Manager * * @namespace LUNGO * @class Service * @requires Zepto * * @author Javier Jimenez Villar || @soyjavi * @author Guillermo Pascual || @pasku1 */ LUNGO.Service = (function(lng, $$, undefined) { /** * Load data from the server using a HTTP GET request. * * @method get * * @param {string} Containing the URL to which the request is sent * @param {object} A map or string that is sent to the server with the request * @param {Function} [OPTIONAL] Callback function after the request * @param {string} [OPTIONAL] Mime-Tipe: json, xml, html, or text */ var get = function(url, data, success, dataType) { return $$.get(url, data, success, dataType); }; /** * Load data from the server using a HTTP POST request. * * @method post * * @param {string} Containing the URL to which the request is sent * @param {object} A map or string that is sent to the server with the request * @param {Function} [OPTIONAL] Callback function after the request * @param {string} [OPTIONAL] Mime-Tipe: json, xml, html, or text */ var post = function(url, data, success, dataType) { return $$.post(url, data, success, dataType); }; /** * Load data from the server using a HTTP GET request. * * @method json * * @param {string} Containing the URL to which the request is sent * @param {object} A map or string that is sent to the server with the request * @param {Function} [OPTIONAL] Callback function after the request */ var json = function(url, data, success) { return $$.json(url, data, success); }; return { get: get, post: post, json: json, Settings: $$.ajaxSettings }; })(LUNGO, Quo);