You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
308 B
12 lines
308 B
/*!
|
|
* Iguana localstorage
|
|
* info: simple local storage manager
|
|
*/
|
|
|
|
function localstorageGetVal(name) {
|
|
return localStorage.getItem(name);
|
|
}
|
|
|
|
function localstorageSetVal(name, propArray) { // TODO(?): encrypt
|
|
localStorage.setItem(name, JSON.stringify(propArray)); // potential security flaw
|
|
}
|