imgcache.js
Version:
JS library based on the File API to cache images for offline recovery (target: cordova/phonegap & chrome)
11 lines (9 loc) • 355 B
JavaScript
Package.describe({
summary: "JS library that stores images locally for offline apps using PhoneGap/Cordova or browsers supporting the new html5 File API",
version: "1.1.1",
git: "https://github.com/chrisben/imgcache.js"
});
Package.onUse(function(api) {
api.versionsFrom(["METEOR@0.9.5", "METEOR@1.1.0.2"]);
api.addFiles("js/imgcache.js");
});