mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 13:45:56 +00:00
disable themes in safe mode; rework safe mode warning/login prompt
This commit is contained in:
32
js/Feeds.js
32
js/Feeds.js
@@ -247,6 +247,38 @@ const Feeds = {
|
||||
});
|
||||
}
|
||||
|
||||
if (dijit.byId("safeModeDlg"))
|
||||
dijit.byId("safeModeDlg").destroyRecursive();
|
||||
|
||||
if (App.getInitParam("safe_mode")) {
|
||||
const dialog = new dijit.Dialog({
|
||||
title: __("Safe mode"),
|
||||
content: `
|
||||
<div class='alert alert-info'>
|
||||
${__('Tiny Tiny RSS is running in safe mode. All themes and plugins are disabled. You will need to log out and back in to disable it.')}
|
||||
</div>
|
||||
<footer class='text-center'>
|
||||
<button dojoType='dijit.form.Button' type='submit'>
|
||||
${__('Close this window')}
|
||||
</button>
|
||||
</footer>
|
||||
`,
|
||||
id: 'safeModeDlg',
|
||||
style: "width: 600px",
|
||||
onCancel: function () {
|
||||
return true;
|
||||
},
|
||||
onExecute: function () {
|
||||
return true;
|
||||
},
|
||||
onClose: function () {
|
||||
return true;
|
||||
}
|
||||
});
|
||||
|
||||
dialog.show();
|
||||
}
|
||||
|
||||
// bw_limit disables timeout() so we request initial counters separately
|
||||
if (App.getInitParam("bw_limit")) {
|
||||
this.requestCounters(true);
|
||||
|
||||
Reference in New Issue
Block a user