Sha256: 092397e59736d1304e491360eb74b6ac51d9abc3ee4e758eb437ae919145357c
Contents?: true
Size: 1.48 KB
Versions: 1
Compression:
Stored size: 1.48 KB
Contents
/*global define*/ define([ './loadWithXhr' ], function( loadWithXhr) { "use strict"; /** * Asynchronously loads the given URL as text. Returns a promise that will resolve to * a String once loaded, or reject if the URL failed to load. The data is loaded * using XMLHttpRequest, which means that in order to make requests to another origin, * the server must have Cross-Origin Resource Sharing (CORS) headers enabled. * * @exports loadText * * @param {String|Promise} url The URL to request, or a promise for the URL. * @param {Object} [headers] HTTP headers to send with the request. * @returns {Promise} a promise that will resolve to the requested data when loaded. * * @exception {DeveloperError} url is required. * * @example * // load text from a URL, setting a custom header * loadText('http://someUrl.com/someJson.txt', { * 'X-Custom-Header' : 'some value' * }).then(function(text) { * //Do something with the text * }, function() { * // an error occurred * }); * * @see <a href="http://en.wikipedia.org/wiki/XMLHttpRequest">XMLHttpRequest</a> * @see <a href='http://www.w3.org/TR/cors/'>Cross-Origin Resource Sharing</a> * @see <a href='http://wiki.commonjs.org/wiki/Promises/A'>CommonJS Promises/A</a> */ var loadText = function(url, headers) { return loadWithXhr(url, undefined, headers); }; return loadText; });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cesium-0.18.0 | app/assets/javascripts/Core/loadText.js |