add 'force' flag to override removal of html elements
This commit is contained in:
parent
cb5e01815c
commit
7db0e14bc0
@ -689,7 +689,7 @@ define([
|
|||||||
// inform of network disconnect
|
// inform of network disconnect
|
||||||
setEditable(false);
|
setEditable(false);
|
||||||
toolbar.failed();
|
toolbar.failed();
|
||||||
Cryptpad.alert(Messages.common_connectionLost);
|
Cryptpad.alert(Messages.common_connectionLost, undefined, force);
|
||||||
};
|
};
|
||||||
|
|
||||||
var onConnectionChange = config.onConnectionChange = function (info) {
|
var onConnectionChange = config.onConnectionChange = function (info) {
|
||||||
@ -700,7 +700,7 @@ define([
|
|||||||
toolbar.reconnecting(info.myId);
|
toolbar.reconnecting(info.myId);
|
||||||
Cryptpad.findOKButton().click();
|
Cryptpad.findOKButton().click();
|
||||||
} else {
|
} else {
|
||||||
Cryptpad.alert(Messages.common_connectionLost);
|
Cryptpad.alert(Messages.common_connectionLost, undefined, force);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@ -838,7 +838,7 @@ define([
|
|||||||
if (!$('#' + LOADING).is(':visible')) { common.addLoadingScreen(); }
|
if (!$('#' + LOADING).is(':visible')) { common.addLoadingScreen(); }
|
||||||
$('.spinnerContainer').hide();
|
$('.spinnerContainer').hide();
|
||||||
if (transparent) { $('#' + LOADING).css('opacity', 0.8); }
|
if (transparent) { $('#' + LOADING).css('opacity', 0.8); }
|
||||||
$('#' + LOADING).find('p').html(error || Messages.error);
|
$('#' + LOADING).find('p').text(error || Messages.error);
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
@ -1796,7 +1796,7 @@ define([
|
|||||||
if (path.length !== 4) { return; }
|
if (path.length !== 4) { return; }
|
||||||
var element = filesOp.getTrashElementData(path);
|
var element = filesOp.getTrashElementData(path);
|
||||||
var sPath = stringifyPath(element.path);
|
var sPath = stringifyPath(element.path);
|
||||||
Cryptpad.alert('<strong>' + Messages.fm_originalPath + "</strong>:<br>" + sPath);
|
Cryptpad.alert('<strong>' + Messages.fm_originalPath + "</strong>:<br>" + sPath, undefined, true);
|
||||||
}
|
}
|
||||||
module.hideMenu();
|
module.hideMenu();
|
||||||
});
|
});
|
||||||
@ -2058,7 +2058,7 @@ define([
|
|||||||
$backupButton.attr('title', Messages.fm_backup_title);
|
$backupButton.attr('title', Messages.fm_backup_title);
|
||||||
$backupButton.on('click', function() {
|
$backupButton.on('click', function() {
|
||||||
var url = window.location.origin + window.location.pathname + '#' + editHash;
|
var url = window.location.origin + window.location.pathname + '#' + editHash;
|
||||||
Cryptpad.alert(Messages._getKey('fm_alert_backupUrl', [url]));
|
Cryptpad.alert(Messages._getKey('fm_alert_backupUrl', [url]), undefined, true);
|
||||||
$('#fm_backupUrl').val(url);
|
$('#fm_backupUrl').val(url);
|
||||||
$('#fm_backupUrl').click(function () {
|
$('#fm_backupUrl').click(function () {
|
||||||
$(this).select();
|
$(this).select();
|
||||||
@ -2083,7 +2083,7 @@ define([
|
|||||||
setEditable(false);
|
setEditable(false);
|
||||||
if (APP.refresh) { APP.refresh(); }
|
if (APP.refresh) { APP.refresh(); }
|
||||||
APP.toolbar.failed();
|
APP.toolbar.failed();
|
||||||
Cryptpad.alert(Messages.common_connectionLost);
|
Cryptpad.alert(Messages.common_connectionLost, undefined, true);
|
||||||
};
|
};
|
||||||
var onReconnect = function (info) {
|
var onReconnect = function (info) {
|
||||||
setEditable(true);
|
setEditable(true);
|
||||||
|
|||||||
@ -726,7 +726,7 @@ define([
|
|||||||
setEditable(false);
|
setEditable(false);
|
||||||
// TODO inform them that the session was torn down
|
// TODO inform them that the session was torn down
|
||||||
toolbar.failed();
|
toolbar.failed();
|
||||||
Cryptpad.alert(Messages.common_connectionLost);
|
Cryptpad.alert(Messages.common_connectionLost, undefined, true);
|
||||||
};
|
};
|
||||||
|
|
||||||
var onConnectionChange = realtimeOptions.onConnectionChange = function (info) {
|
var onConnectionChange = realtimeOptions.onConnectionChange = function (info) {
|
||||||
@ -737,7 +737,7 @@ define([
|
|||||||
toolbar.reconnecting(info.myId);
|
toolbar.reconnecting(info.myId);
|
||||||
Cryptpad.findOKButton().click();
|
Cryptpad.findOKButton().click();
|
||||||
} else {
|
} else {
|
||||||
Cryptpad.alert(Messages.common_connectionLost);
|
Cryptpad.alert(Messages.common_connectionLost, undefined, true);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@ -662,7 +662,7 @@ define([
|
|||||||
|
|
||||||
var disconnect = function (info) {
|
var disconnect = function (info) {
|
||||||
//setEditable(false); // TODO
|
//setEditable(false); // TODO
|
||||||
Cryptpad.alert(Messages.common_connectionLost);
|
Cryptpad.alert(Messages.common_connectionLost, undefined, true);
|
||||||
};
|
};
|
||||||
|
|
||||||
var create = function (info) {
|
var create = function (info) {
|
||||||
|
|||||||
@ -167,7 +167,7 @@ define([
|
|||||||
if (val !== "I love CryptPad") { return; }
|
if (val !== "I love CryptPad") { return; }
|
||||||
obj.proxy.drive = Cryptpad.getStore().getEmptyObject();
|
obj.proxy.drive = Cryptpad.getStore().getEmptyObject();
|
||||||
Cryptpad.alert(Messages.settings_resetDone);
|
Cryptpad.alert(Messages.settings_resetDone);
|
||||||
});
|
}, undefined, true);
|
||||||
});
|
});
|
||||||
|
|
||||||
return $div;
|
return $div;
|
||||||
|
|||||||
@ -771,7 +771,7 @@ define([
|
|||||||
// inform of network disconnect
|
// inform of network disconnect
|
||||||
setEditable(false);
|
setEditable(false);
|
||||||
toolbar.failed();
|
toolbar.failed();
|
||||||
Cryptpad.alert(Messages.common_connectionLost);
|
Cryptpad.alert(Messages.common_connectionLost, undefined, true);
|
||||||
};
|
};
|
||||||
|
|
||||||
var onConnectionChange = config.onConnectionChange = function (info) {
|
var onConnectionChange = config.onConnectionChange = function (info) {
|
||||||
@ -782,7 +782,7 @@ define([
|
|||||||
toolbar.reconnecting(info.myId);
|
toolbar.reconnecting(info.myId);
|
||||||
Cryptpad.findOKButton().click();
|
Cryptpad.findOKButton().click();
|
||||||
} else {
|
} else {
|
||||||
Cryptpad.alert(Messages.common_connectionLost);
|
Cryptpad.alert(Messages.common_connectionLost, undefined, true);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user