angular-localForage icon indicating copy to clipboard operation
angular-localForage copied to clipboard

Angular service & directive for https://github.com/mozilla/localForage (Offline storage, improved.)

Results 22 angular-localForage issues
Sort by recently updated
recently updated
newest added

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...

![Screen Shot 2019-04-02 at 2 29 23 pm](https://user-images.githubusercontent.com/23649824/55374344-da064000-5553-11e9-8a9a-3cacb9e35c87.png) As per the screenshot above, the setItem call returns an ES6 promise instead of an angular promise. This is _usually_ not a...

bug
beginner-friendly

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...

bug
upstream-api-consistency

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' });...

bug

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...

enhancement

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...

enhancement