├── .gitignore ├── .gitmodules ├── .travis.yml ├── Gruntfile.js ├── History.md ├── LICENSE ├── Makefile ├── README.md ├── bower.json ├── docs ├── api-documentation.md ├── browser-support.md └── getting-started.md ├── package.json ├── spec ├── index.html └── spec.js └── src ├── xStore.js └── xStore.min.js /.gitignore: -------------------------------------------------------------------------------- 1 | .grunt 2 | _SpecRunner.html 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/xStore/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/xStore/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/xStore/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/xStore/HEAD/History.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/xStore/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/xStore/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/xStore/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/xStore/HEAD/bower.json -------------------------------------------------------------------------------- /docs/api-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/xStore/HEAD/docs/api-documentation.md -------------------------------------------------------------------------------- /docs/browser-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/xStore/HEAD/docs/browser-support.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/xStore/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/xStore/HEAD/package.json -------------------------------------------------------------------------------- /spec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/xStore/HEAD/spec/index.html -------------------------------------------------------------------------------- /spec/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/xStore/HEAD/spec/spec.js -------------------------------------------------------------------------------- /src/xStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/xStore/HEAD/src/xStore.js -------------------------------------------------------------------------------- /src/xStore.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florian/xStore/HEAD/src/xStore.min.js --------------------------------------------------------------------------------