diff options
| author | Fuwn <[email protected]> | 2024-01-13 19:44:48 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-13 19:44:48 -0800 |
| commit | 36a8765105905f19d1f906a12a7354d85a7bad4f (patch) | |
| tree | 7203265c2308a41cac80f9181a9ea8f3468cd1bc /src/routes | |
| parent | feat(schedule): include last season (diff) | |
| download | due.moe-36a8765105905f19d1f906a12a7354d85a7bad4f.tar.xz due.moe-36a8765105905f19d1f906a12a7354d85a7bad4f.zip | |
feat(settings): add tooltip for rss
Diffstat (limited to 'src/routes')
| -rw-r--r-- | src/routes/settings/+page.svelte | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/routes/settings/+page.svelte b/src/routes/settings/+page.svelte index 31880ee8..a5c0e815 100644 --- a/src/routes/settings/+page.svelte +++ b/src/routes/settings/+page.svelte @@ -12,6 +12,7 @@ import Category from '$lib/Settings/Category.svelte'; import { getNotificationsContext } from 'svelte-notifications'; import { options } from '$lib/Notification/options.js'; + import tooltip from '$lib/Tooltip/tooltip'; export let data; @@ -58,8 +59,14 @@ </button> Your AniList notifications RSS feed URL <SettingHint lineBreak> - This <a href="https://en.wikipedia.org/wiki/RSS" target="_blank">RSS</a> feed will return the - currently logged in AniList profile's notifications for remote consumption. + This <a + href="https://en.wikipedia.org/wiki/RSS" + target="_blank" + title="Web feed data format" + use:tooltip + data-tooltip-above>RSS</a + > + feed will return the currently logged in AniList user's notification feed for external consumption. <br /> Do not share this link with <b>anyone</b>! </SettingHint> |