Remove invalid 'DISCONNECTED' message in drive history mode

This commit is contained in:
yflory 2020-03-19 11:45:17 +01:00
parent d1b16af160
commit 1ea00cfdfa
2 changed files with 5 additions and 3 deletions

View File

@ -259,12 +259,14 @@ define([
};
// Handle disconnect/reconnect
var setEditable = function (state) {
var setEditable = function (state, isHistory) {
if (APP.closed || !APP.$content || !$.contains(document.documentElement, APP.$content[0])) { return; }
APP.editable = !APP.readOnly && state;
if (!state) {
APP.$content.addClass('cp-app-drive-readonly');
$('#cp-app-drive-connection-state').show();
if (!isHistory) {
$('#cp-app-drive-connection-state').show();
}
$('[draggable="true"]').attr('draggable', false);
}
else {

View File

@ -119,7 +119,7 @@ define([
var setHistory = function (bool, update) {
history.isHistoryMode = bool;
setEditable(!bool);
setEditable(!bool, true);
if (!bool && update) {
history.onLeaveHistory();
}