angular-localForage
angular-localForage copied to clipboard
Angular service & directive for https://github.com/mozilla/localForage (Offline storage, improved.)
There are a few things that make 1.5 more desirable over 1.4 - one being this one https://github.com/localForage/localForage/pull/633. Then again, 1.5 has one breaking change: https://github.com/localForage/localForage/releases/tag/1.5.0 This affects only the...
 As per the screenshot above, the setItem call returns an ES6 promise instead of an angular promise. This is _usually_ not a...
When loading my app in under iOS 11.1.2 / safari localForage always uses webSQLStorage driver instead of indexedDB. Even the attempt to force the driver either in config or by...
I can't use bower install for my angularjs project which uses angularjs 1.6.7. Can you remove that dependency in bower.json? Thanks!
When using with webpack I get the warning: WARNING in ./~/angular-localforage/~/localforage/dist/localforage.js Critical dependencies: 7:484-491 This seems to be a pre-built javascript file. Though this is possible, it's not recommended. Try...
I am getting this issue in my angular application. The local forage provider is configured in the config block like so: ``` $localForageProvider.config({ driver: localforage.LOCALSTORAGE, name: 'ttn', storeName: 'keyvaluepairs' });...
createInstance({name: 'foo', storeName: 'bar'}); createInstance({name: 'foo', storeName: 'differentName'}) are now allowed. instance('name') is deprecated but can still be used, instance({name: 'foo', storeName: 'bar'}) is preferred now.
If I bind to the same key in different controllers and one controller modify the object, this modification is not reflected in the other controller right? Wouldn't it be nice...
Currently, even if you're only getting a single kv pair, if that lookup is in an array, it will iterate the whole database. We should look into just returning a...