summaryrefslogtreecommitdiff
path: root/js/Feeds.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-11-14 16:12:27 +0300
committerAndrew Dolgov <[email protected]>2021-11-14 16:12:27 +0300
commitcf933716075ea98ec1004544734a3158ed07a577 (patch)
treee6780a33933549b774070ef7d4105d37129533d0 /js/Feeds.js
parentd3d3bceec9bc2307b0967b3ef6a5486a648323ae (diff)
show safe mode warning dialog in prefs
Diffstat (limited to 'js/Feeds.js')
-rw-r--r--js/Feeds.js15
1 files changed, 2 insertions, 13 deletions
diff --git a/js/Feeds.js b/js/Feeds.js
index 27586ab13..5ef554af0 100644
--- a/js/Feeds.js
+++ b/js/Feeds.js
@@ -278,19 +278,8 @@ const Feeds = {
}
if (App.getInitParam("safe_mode")) {
- const dialog = new fox.SingleUseDialog({
- 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' class='alt-primary'>
- ${__('Close this window')}
- </button>
- </footer>`
- });
-
- dialog.show();
+ /* global CommonDialogs */
+ CommonDialogs.safeModeWarning();
}
// bw_limit disables timeout() so we request initial counters separately