Full refund within 14 days of purchase date.
You can now build a Twitter or Google Maps client using Open Web technologies only (read why this was impossible before).
// The exact same uri has to be used to "cache()", "remove()" it or "get()" a media to/from the cache.
var url = "http://gravatar.com/avatar/1d924ae6b834d2c43d313a94137ac6fe&x=.png";
// add a media to the cache while online
mediaCache.cache( url, successCallback, errorCallback );
// remove a resource from the cache at anytime
mediaCache.remove( url );
// get a resource from the cache while offline
mediaCache.get( url, function( media ) {
// media is an <img>, <audio> or <video> DOM element, based on the resource extension
document.body.appendChild( media );
});
mediaCache is the combination of a server-side script (currently available in php) and a JS librarys:
Questions & Comments