summaryrefslogtreecommitdiff
path: root/js/Feeds.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-11 21:42:38 +0300
committerAndrew Dolgov <[email protected]>2021-02-11 21:42:38 +0300
commit1a680d4eae7a5a6adb856f4db8adaa04ea4d64e3 (patch)
treef76f0109a793a8a7bc6f16d8c0f3876f928e3ed6 /js/Feeds.js
parent848bc57f29ca4aa8357617a8470afb063748dd99 (diff)
publishedOPML: use client dialog
Diffstat (limited to 'js/Feeds.js')
-rw-r--r--js/Feeds.js47
1 files changed, 28 insertions, 19 deletions
diff --git a/js/Feeds.js b/js/Feeds.js
index 64e932ca2..1e476dd98 100644
--- a/js/Feeds.js
+++ b/js/Feeds.js
@@ -226,25 +226,34 @@ const Feeds = {
if (dijit.byId("defaultPasswordDlg"))
dijit.byId("defaultPasswordDlg").destroyRecursive();
- xhrPost("backend.php", {op: 'dlg', method: 'defaultpasswordwarning'}, (transport) => {
- const dialog = new dijit.Dialog({
- title: __("Your password is at default value"),
- content: transport.responseText,
- id: 'defaultPasswordDlg',
- style: "width: 600px",
- onCancel: function () {
- return true;
- },
- onExecute: function () {
- return true;
- },
- onClose: function () {
- return true;
- }
- });
-
- dialog.show();
+ const dialog = new dijit.Dialog({
+ title: __("Your password is at default value"),
+ content: `<div class='alert alert-error'>
+ ${__("You are using default tt-rss password. Please change it in the Preferences (Personal data / Authentication).")}
+ </div>
+
+ <footer class='text-center'>
+ <button dojoType='dijit.form.Button' class='alt-primary' onclick="document.location.href = 'prefs.php'">
+ ${__('Open Preferences')}
+ </button>
+ <button dojoType='dijit.form.Button' onclick="return dijit.byId('defaultPasswordDlg').hide()">
+ ${__('Close this window')}
+ </button>
+ </footer>`,
+ id: 'defaultPasswordDlg',
+ style: "width: 600px",
+ onCancel: function () {
+ return true;
+ },
+ onExecute: function () {
+ return true;
+ },
+ onClose: function () {
+ return true;
+ }
});
+
+ dialog.show();
}
if (dijit.byId("safeModeDlg"))
@@ -258,7 +267,7 @@ const Feeds = {
${__('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'>
+ <button dojoType='dijit.form.Button' type='submit' class='alt-primary'>
${__('Close this window')}
</button>
</footer>