├── README.md ├── bower.json ├── core-localstorage.html ├── demo.html ├── index.html └── test ├── basic.html ├── index.html ├── raw.html └── value-binding.html /README.md: -------------------------------------------------------------------------------- 1 | core-localstorage 2 | ================= 3 | 4 | **This element is compatible with Polymer 0.5 and lower only, and will be deprecated.** 5 | You can check out a similar 0.8-compatible version of this element at [https://github.com/polymerelements/iron-localstorage](https://github.com/polymerelements/iron-localstorage) 6 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "core-localstorage", 3 | "private": true, 4 | "dependencies": { 5 | "polymer": "Polymer/polymer#master" 6 | }, 7 | "devDependencies": { 8 | "web-component-tester": "Polymer/web-component-tester#^1.1.0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /core-localstorage.html: -------------------------------------------------------------------------------- 1 | 9 | 10 | 26 | 27 | 28 | 29 | 128 | -------------------------------------------------------------------------------- /demo.html: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | polymer-localstorage 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 31 | 32 | 33 |

34 | 35 | 36 | 37 | 38 | 42 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /test/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | core-localstorage-basic 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | Tests 15 | 16 | 17 | 18 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /test/raw.html: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | core-localstorage-raw 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /test/value-binding.html: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | core-localstorage-value-binding 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 28 | 29 | 30 | 31 | 35 | 36 | 37 | 38 | 39 | 76 | 77 | 78 | 79 | --------------------------------------------------------------------------------