/sites/web/bower_components/localforage-backbone/README.md
https://bitbucket.org/aswinvk28/smartpan-stock-drupal · Markdown · 41 lines · 27 code · 14 blank · 0 comment · 0 complexity · 8e99a50070feffceea27330db246eef8 MD5 · raw file
- # localForage Backbone [](http://travis-ci.org/mozilla/localForage-backbone)
- Backbone.js driver for the
- [localForage offline storage library](https://github.com/mozilla/localForage).
- Install with bower:
- bower install localforage-backbone
- Run tests with grunt:
- grunt test
- Submit issues, pull requests, etc. if something is up! <3
- ## Usage
- This library lets you override the `sync()` method on your collections and
- models so they're saved to localForage instead of a REST server. Simply
- override your objects' `sync()` method with the namespace for your model:
- var MyModel = Backbone.Collection.extend({
- sync: Backbone.localforage.sync('MyModel')
- });
- var MyCollection = Backbone.Collection.extend({
- model: MyModel,
- sync: Backbone.localforage.sync('MyCollection')
- });
- Now whenever you save your collections or models, they'll be saved with
- localForage!
- # License
- This program is free software; it is distributed under an
- [Apache License](http://github.com/mozilla/localForage-backbone/blob/master/LICENSE).
- ---
- Copyright (c) 2014 [Mozilla](https://mozilla.org)
- ([Contributors](https://github.com/mozilla/localForage-backbone/graphs/contributors)).