/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

  1. # localForage Backbone [![Build Status](https://secure.travis-ci.org/mozilla/localForage-backbone.png?branch=master)](http://travis-ci.org/mozilla/localForage-backbone)
  2. Backbone.js driver for the
  3. [localForage offline storage library](https://github.com/mozilla/localForage).
  4. Install with bower:
  5. bower install localforage-backbone
  6. Run tests with grunt:
  7. grunt test
  8. Submit issues, pull requests, etc. if something is up! <3
  9. ## Usage
  10. This library lets you override the `sync()` method on your collections and
  11. models so they're saved to localForage instead of a REST server. Simply
  12. override your objects' `sync()` method with the namespace for your model:
  13. var MyModel = Backbone.Collection.extend({
  14. sync: Backbone.localforage.sync('MyModel')
  15. });
  16. var MyCollection = Backbone.Collection.extend({
  17. model: MyModel,
  18. sync: Backbone.localforage.sync('MyCollection')
  19. });
  20. Now whenever you save your collections or models, they'll be saved with
  21. localForage!
  22. # License
  23. This program is free software; it is distributed under an
  24. [Apache License](http://github.com/mozilla/localForage-backbone/blob/master/LICENSE).
  25. ---
  26. Copyright (c) 2014 [Mozilla](https://mozilla.org)
  27. ([Contributors](https://github.com/mozilla/localForage-backbone/graphs/contributors)).