We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 461fa49 commit 4baa375Copy full SHA for 4baa375
zerobin/static/js/behavior.js
@@ -163,7 +163,7 @@ window.zerobin = {
163
are prefixed with with the passed version (default being this lib
164
version) */
165
getLocalStorageKeys: function(version){
166
- version = version || zerobin.version;
+ version = 'zerobinV' + (version || zerobin.version);
167
var keys = [];
168
for (var key in localStorage){
169
if (key.indexOf(version) !== -1){
@@ -220,7 +220,7 @@ window.zerobin = {
220
void localStorage.removeItem(keys[19]);
221
}
222
223
- localStorage.setItem(zerobin.version + "#" + date, url);
+ localStorage.setItem('zerobinV' + zerobin.version + "#" + date, url);
224
},
225
226
/** Return a list of the previous paste url with the creation date
0 commit comments