├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── bower.json ├── changelog.js ├── dist ├── angular-localForage.js └── angular-localForage.min.js ├── example ├── index.html └── js │ ├── app.js │ └── controllers.js ├── gulpfile.js ├── karma.conf.js ├── package.json ├── src └── angular-localForage.js ├── tests ├── bind.js ├── driver.js ├── functional.js ├── instance.js └── item.js └── validate-commit-msg.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/bower.json -------------------------------------------------------------------------------- /changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/changelog.js -------------------------------------------------------------------------------- /dist/angular-localForage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/dist/angular-localForage.js -------------------------------------------------------------------------------- /dist/angular-localForage.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/dist/angular-localForage.min.js -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/example/index.html -------------------------------------------------------------------------------- /example/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/example/js/app.js -------------------------------------------------------------------------------- /example/js/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/example/js/controllers.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/gulpfile.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/package.json -------------------------------------------------------------------------------- /src/angular-localForage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/src/angular-localForage.js -------------------------------------------------------------------------------- /tests/bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/tests/bind.js -------------------------------------------------------------------------------- /tests/driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/tests/driver.js -------------------------------------------------------------------------------- /tests/functional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/tests/functional.js -------------------------------------------------------------------------------- /tests/instance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/tests/instance.js -------------------------------------------------------------------------------- /tests/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/tests/item.js -------------------------------------------------------------------------------- /validate-commit-msg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotttrinh/angular-localForage/HEAD/validate-commit-msg.js --------------------------------------------------------------------------------