Protect against multiple windows when delete a file from recovery
This commit is contained in:
parent
4a2d80d5e9
commit
f11de7259e
@ -65,6 +65,8 @@
|
|||||||
function removeFile(fileIndex) {
|
function removeFile(fileIndex) {
|
||||||
var ok = confirm('Are you sure you want to remove "' + localStorage[fileIndex + '.title'] + '"?');
|
var ok = confirm('Are you sure you want to remove "' + localStorage[fileIndex + '.title'] + '"?');
|
||||||
if(ok) {
|
if(ok) {
|
||||||
|
// Protect against multiple windows
|
||||||
|
localStorage.removeItem('frontWindowId');
|
||||||
localStorage['file.list'] = localStorage['file.list'].replace(';' + fileIndex + ';', ';');
|
localStorage['file.list'] = localStorage['file.list'].replace(';' + fileIndex + ';', ';');
|
||||||
for (var key in localStorage){
|
for (var key in localStorage){
|
||||||
key.indexOf(fileIndex) === 0 && localStorage.removeItem(key);
|
key.indexOf(fileIndex) === 0 && localStorage.removeItem(key);
|
||||||
|
Loading…
Reference in New Issue
Block a user