Replace references to jStore with store; cleanup stray whitespace.

Esse commit está contido em:
Joshua Gross
2010-07-04 12:32:24 -07:00
commit 67927622fb
2 arquivos alterados com 74 adições e 1 exclusões
+1 -1
Ver Arquivo
Diff do arquivo suprimido porque uma ou mais linhas são muito longas
+73
Ver Arquivo
@@ -0,0 +1,73 @@
var store = (function(){
var api = {},
win = window,
doc = win.document,
localStorageName = 'localStorage',
globalStorageName = 'globalStorage',
storage
api.set = function(key, value) {}
api.get = function(key) {}
api.remove = function(key) {}
api.clear = function() {}
function serialize(value) {
return JSON.stringify(value)
}
function deserialize(value) {
if (typeof value != 'string') { return undefined }
return JSON.parse(value)
}
if (localStorageName in win && win[localStorageName]) {
storage = win[localStorageName]
api.set = function(key, val) { storage[key] = serialize(val) }
api.get = function(key) { return deserialize(storage[key]) }
api.remove = function(key) { delete storage[key] }
api.clear = function() { storage.clear() }
} else if (globalStorageName in win && win[globalStorageName]) {
storage = win[globalStorageName][win.location.hostname]
api.set = function(key, val) { storage[key] = serialize(val) }
api.get = function(key) { return deserialize(storage[key] && storage[key].value) }
api.remove = function(key) { delete storage[key] }
api.clear = function() { for (var key in storage ) { delete storage[key] } }
} else if (doc.documentElement.addBehavior) {
function getStorage() {
if (storage) { return storage; }
storage = doc.body.appendChild(doc.createElement('div'))
storage.style.display = 'none'
// See http://msdn.microsoft.com/en-us/library/ms531081(v=VS.85).aspx
// and http://msdn.microsoft.com/en-us/library/ms531424(v=VS.85).aspx
storage.addBehavior('#default#userData')
storage.load(localStorageName)
return storage;
}
api.set = function(key, val) {
var storage = getStorage()
storage.setAttribute(key, serialize(val))
storage.save(localStorageName)
}
api.get = function(key) {
var storage = getStorage()
return deserialize(storage.getAttribute(key))
}
api.remove = function(key) {
var storage = getStorage()
storage.removeAttribute(key)
storage.save(localStorageName)
}
api.clear = function() {
var storage = getStorage()
var attributes = storage.XMLDocument.documentElement.attributes;
storage.load(localStorageName)
for (var i=0, attr; attr = attributes[i]; i++) {
storage.removeAttribute(attr.name)
}
storage.save(localStorageName)
}
}
return api
})()