diff --git a/www/code/main.js b/www/code/main.js
index 5ece7a208..e8999ffee 100644
--- a/www/code/main.js
+++ b/www/code/main.js
@@ -689,7 +689,7 @@ define([
// inform of network disconnect
setEditable(false);
toolbar.failed();
- Cryptpad.alert(Messages.common_connectionLost);
+ Cryptpad.alert(Messages.common_connectionLost, undefined, force);
};
var onConnectionChange = config.onConnectionChange = function (info) {
@@ -700,7 +700,7 @@ define([
toolbar.reconnecting(info.myId);
Cryptpad.findOKButton().click();
} else {
- Cryptpad.alert(Messages.common_connectionLost);
+ Cryptpad.alert(Messages.common_connectionLost, undefined, force);
}
};
diff --git a/www/common/cryptpad-common.js b/www/common/cryptpad-common.js
index be04d6df2..bf0893ae6 100644
--- a/www/common/cryptpad-common.js
+++ b/www/common/cryptpad-common.js
@@ -838,7 +838,7 @@ define([
if (!$('#' + LOADING).is(':visible')) { common.addLoadingScreen(); }
$('.spinnerContainer').hide();
if (transparent) { $('#' + LOADING).css('opacity', 0.8); }
- $('#' + LOADING).find('p').html(error || Messages.error);
+ $('#' + LOADING).find('p').text(error || Messages.error);
};
/*
diff --git a/www/drive/main.js b/www/drive/main.js
index 3aa67815c..47d8da2ee 100644
--- a/www/drive/main.js
+++ b/www/drive/main.js
@@ -1796,7 +1796,7 @@ define([
if (path.length !== 4) { return; }
var element = filesOp.getTrashElementData(path);
var sPath = stringifyPath(element.path);
- Cryptpad.alert('' + Messages.fm_originalPath + ":
" + sPath);
+ Cryptpad.alert('' + Messages.fm_originalPath + ":
" + sPath, undefined, true);
}
module.hideMenu();
});
@@ -2058,7 +2058,7 @@ define([
$backupButton.attr('title', Messages.fm_backup_title);
$backupButton.on('click', function() {
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').click(function () {
$(this).select();
@@ -2083,7 +2083,7 @@ define([
setEditable(false);
if (APP.refresh) { APP.refresh(); }
APP.toolbar.failed();
- Cryptpad.alert(Messages.common_connectionLost);
+ Cryptpad.alert(Messages.common_connectionLost, undefined, true);
};
var onReconnect = function (info) {
setEditable(true);
diff --git a/www/pad/main.js b/www/pad/main.js
index 83d8a99cb..28476dd68 100644
--- a/www/pad/main.js
+++ b/www/pad/main.js
@@ -726,7 +726,7 @@ define([
setEditable(false);
// TODO inform them that the session was torn down
toolbar.failed();
- Cryptpad.alert(Messages.common_connectionLost);
+ Cryptpad.alert(Messages.common_connectionLost, undefined, true);
};
var onConnectionChange = realtimeOptions.onConnectionChange = function (info) {
@@ -737,7 +737,7 @@ define([
toolbar.reconnecting(info.myId);
Cryptpad.findOKButton().click();
} else {
- Cryptpad.alert(Messages.common_connectionLost);
+ Cryptpad.alert(Messages.common_connectionLost, undefined, true);
}
};
diff --git a/www/poll/main.js b/www/poll/main.js
index 3e619cb96..d7e391c8b 100644
--- a/www/poll/main.js
+++ b/www/poll/main.js
@@ -662,7 +662,7 @@ define([
var disconnect = function (info) {
//setEditable(false); // TODO
- Cryptpad.alert(Messages.common_connectionLost);
+ Cryptpad.alert(Messages.common_connectionLost, undefined, true);
};
var create = function (info) {
diff --git a/www/settings/main.js b/www/settings/main.js
index 70cf938dc..498b212eb 100644
--- a/www/settings/main.js
+++ b/www/settings/main.js
@@ -167,7 +167,7 @@ define([
if (val !== "I love CryptPad") { return; }
obj.proxy.drive = Cryptpad.getStore().getEmptyObject();
Cryptpad.alert(Messages.settings_resetDone);
- });
+ }, undefined, true);
});
return $div;
diff --git a/www/slide/main.js b/www/slide/main.js
index 86486227d..ce181b292 100644
--- a/www/slide/main.js
+++ b/www/slide/main.js
@@ -771,7 +771,7 @@ define([
// inform of network disconnect
setEditable(false);
toolbar.failed();
- Cryptpad.alert(Messages.common_connectionLost);
+ Cryptpad.alert(Messages.common_connectionLost, undefined, true);
};
var onConnectionChange = config.onConnectionChange = function (info) {
@@ -782,7 +782,7 @@ define([
toolbar.reconnecting(info.myId);
Cryptpad.findOKButton().click();
} else {
- Cryptpad.alert(Messages.common_connectionLost);
+ Cryptpad.alert(Messages.common_connectionLost, undefined, true);
}
};