UNPKG

1.58 kBPlain TextView Raw
1v1.3.8
2+ Fix closing </iframe> tag for IE7 (GH issue #67)
3
4v1.3.7
5+ Fix store.getAll for IE6
6
7v1.3.6
8+ Remove globalStorage and drop FF 2.0/3.0 support (See https://github.com/marcuswestin/store.js/issues/44)
9
10v1.3.5
11+ Now store.set returns the set value: `store.set(key, value) == value`
12+ Values previously set with localStorage directly are now parsed handler by store.js: `localStorage['foo'] = 1; assert(store.get('foo') == 1)`
13
14v1.3.4
15+ Add store.enabled
16+ Deprecate store.disabled
17+ Add link to Jack Franklin's screencast
18
19v1.3.3
20+ Fix IE keys beginning with numeric characters (nice find @pauldwaite)
21
22v1.3.2
23+ Implement store.getAll() (patch by @blq)
24
25v1.3.0
26+ Use uglify.js for minifying store.min.js and store+json.min.js
27+ Add build script
28
29v1.2.0
30+ Remove same-path restrictions in IE6/7! (Thanks @mjpizz!)
31+ Support CommonJS and AMD module systems (Thanks @pereckerdal!)
32+ Fix: store.set('foo', undefined); store.get('foo') no longer throws (Thanks @buger!)
33
34v1.1.1
35+ Publish in npm as "store" rather than "store.js"
36+ Add commonjs export for require support
37+ Add supported browsers Chrome 6-11, Firefox 4.0
38
39v1.1.0
40+ First versioned version.
41+ API: store.set, store.get, store.remove, store.clear, store.transact
42+ Minified versions are included: store.min.js for store.js only, and store+json2.min.js for store.js and json2.js
43
44TODO
45- Get around IE6/7 per-directory restrition. @lrbabe/@louis_remi had the idea of putting the store.js API in an anonymous iframe a la https://github.com/meebo/embed-code and see what directory restriction that would fall under