Chromecast: registers old client_id metrics pref.
[chromium-blink-merge.git] / third_party / polymer / v0_8 / components-chromium / iron-localstorage / README.md
blobf3e1acdb41e89ba669ac16f30f4cbf41eb5fb9a9
1 iron-localstorage
2 =================
4 Element access to localStorage.  The "name" property
5 is the key to the data ("value" property) stored in localStorage.
7 `iron-localstorage` automatically saves the value to localStorage when
8 value is changed.  Note that if value is an object auto-save will be
9 triggered only when value is a different instance.
11 ```html
12 <iron-localstorage name="my-app-storage" value="{{value}}"></iron-localstorage>
13 ```