X-Git-Url: https://git.yukkurigames.com/?p=webcart1000.git;a=blobdiff_plain;f=o_o.js;h=4ec46f9eada332ba184e9df7909321fcd42e2001;hp=061cbb3a816ac441950e49bd92b94422b1f6a911;hb=HEAD;hpb=64c651ce5f394030fa7010c9847d459cbbeab16e diff --git a/o_o.js b/o_o.js index 061cbb3..4ec46f9 100644 --- a/o_o.js +++ b/o_o.js @@ -1,3 +1,12 @@ +/* The person who associated a work with this deed has dedicated the + work to the public domain by waiving all of his or her rights to + the work worldwide under copyright law, including all related and + neighboring rights, to the extent allowed by law. + + You can copy, modify, distribute and perform the work, even for + commercial purposes, all without asking permission. +*/ + (function () { "use strict"; @@ -23,7 +32,7 @@ function generateMessage () { var r = {}; for (var k in KEYS) - r[k] = KEYS[k](localStorage[k]); + r[k] = KEYS[k](localStorage["WEBCART1000 " + k]); return r; } @@ -32,7 +41,7 @@ return; for (var k in KEYS) { if (k in data) { - localStorage[k] = KEYS[k](data[k]); + localStorage["WEBCART1000 " + k] = KEYS[k](data[k]); } } }