I want to use Phonegap on firefox os but I have a problem on storage api. Current cordova version 3.0, supports websql and localstorage API. It doesn't have indexedDB API yet. So, my current option is to use Lawnchair.
But do you have a good idea on how to design a persistence layer for this. What can you suggest?
Please let me know. Thank you.
You might try using localForage:
https://github.com/mozilla/localforage
To quote, "localForage is a handy library that improves the offline experience of your web app by using asynchronous storage (via IndexedDB where available) but with a simple, localStorage-like API."