diff options
| author | wn_ <invalid@email.com> | 2025-06-17 17:52:06 +0000 |
|---|---|---|
| committer | wn_ <invalid@email.com> | 2025-06-17 17:52:06 +0000 |
| commit | ef1f3cbcef50aecc126c4d29946407e0710ff97d (patch) | |
| tree | 20065b5b118e2c5bca7a2fedf03ea181c496755d /js | |
| parent | 4e47a39c2a9325828db19e46155cdac32c4dc4b2 (diff) | |
Show some HTML content as a hover tip when the 'feed URL' returned HTML without feeds.
Also tweak the 'Feeds::_subscribe()' documentation a bit.
Diffstat (limited to 'js')
| -rw-r--r-- | js/CommonDialogs.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/js/CommonDialogs.js b/js/CommonDialogs.js index 1dec1b6da..dcf25a566 100644 --- a/js/CommonDialogs.js +++ b/js/CommonDialogs.js @@ -168,7 +168,9 @@ const CommonDialogs = { dialog.show_error(__("Specified URL seems to be invalid.")); break; case 3: - dialog.show_error(__("Specified URL doesn't seem to contain any feeds.")); + dialog.show_error(`<span title="${App.escapeHtml(rc['message'])}" style="text-decoration: underline dotted"> + ${__("Specified URL doesn't seem to contain any feeds.")} + </span>`); break; case 4: { |