Nathan Jass
Nathan Jass
Any update on this? My app needs the storage capacity of IndexDB to function for some users. What's involved in updating angular-forage to use localForage ^1.7?
I tried setting the drive to "asyncStorage" and am getting "Error: No available storage method found" in Safari on Mac OS. Without the specific setdriver, I get a non-specified WebSQL...
Realize this is old, but a closed promise would be so helpful. Seems like a ton of overhead to need to inject $rootScope to monitor the closed event. Any chance...
I'm going to clone this locally and load it in Developer Mode, but is there any update from the developer as to what Google's review timeline is looking like on...
Just adding my need for this as well. Something like oboe.await would be amazing. I'm streaming JSON results from a server (ultimately from Elasticsearch using ES's scroll method), and need...
+1...I'm looking for this too...Seems like it must be possible
Or maybe I just don't know how to properly use the .each() method...
Oh...I guess the syntax is ``` $indexedDB.openStore('storeName', function(store) { store.each(function(item) { // do synchronous stuff with item }); }); ``` I was calling ``` store.each().then(function(items){ // items is the entire...
What if I need to do async stuff within the .each loop? Specifically, changing and upserting the modified records as I go. ``` $indexedDB.openStore('storeName', function(store) { store.each(function(item) { item.property =...
So getting back to this and digging in a bit more, I'm able to attach to the $q.notify events for the .each() function as follows: ``` $indexedDB.openStore('storeName', function(store) { store.each().then(function(allData){...