Sha256: 66af96d35714df6161413a35b2e3e429ab44e7b374fac13024e51e701e9f951b
Contents?: true
Size: 1.25 KB
Versions: 1
Compression:
Stored size: 1.25 KB
Contents
/*global define*/ define([ './loadWithXhr' ], function( loadWithXhr) { "use strict"; /** * Asynchronously loads the given URL as a blob. Returns a promise that will resolve to * a Blob 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 loadBlob * * @param {String|Promise} url The URL of the data, or a promise for the URL. * @param {Object} [headers] HTTP headers to send with the requests. * * @returns {Promise} a promise that will resolve to the requested data when loaded. * * @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> * * @example * // load a single URL asynchronously * loadBlob('some/url').then(function(blob) { * // use the data * }, function() { * // an error occurred * }); */ var loadBlob = function(url, headers) { return loadWithXhr(url, 'blob', headers); }; return loadBlob; });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cesium-0.18.0 | app/assets/javascripts/Core/loadBlob.js |