diff options
| author | Fuwn <[email protected]> | 2024-01-15 19:22:54 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-15 19:22:54 -0800 |
| commit | a6dc41b2cd1ee0c174e98e6b063c64379c5c8bcd (patch) | |
| tree | 24992f56e50e58b4169637bd847b2162dc1aae14 /src/lib | |
| parent | refactor(settings): move zero progress to calculation (diff) | |
| download | due.moe-a6dc41b2cd1ee0c174e98e6b063c64379c5c8bcd.tar.xz due.moe-a6dc41b2cd1ee0c174e98e6b063c64379c5c8bcd.zip | |
feat(settings): more useful tooltips
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/Settings/Categories/Cache.svelte | 6 | ||||
| -rw-r--r-- | src/lib/Settings/Categories/Debug.svelte | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/lib/Settings/Categories/Cache.svelte b/src/lib/Settings/Categories/Cache.svelte index 07d7cdce..eaa14063 100644 --- a/src/lib/Settings/Categories/Cache.svelte +++ b/src/lib/Settings/Categories/Cache.svelte @@ -1,9 +1,13 @@ <script> + import tooltip from '$lib/Tooltip/tooltip'; import settings from '$stores/settings'; </script> <small style="opacity: 50%;"> - All caches are stored in your browser's <code>localStorage</code>. Clearing + All caches are stored in your browser's <code + title="Local browser key/value pair store" + use:tooltip>localStorage</code + >. Clearing <a href="https://due.moe">due.moe</a>'s site data will clear these caches too. </small> diff --git a/src/lib/Settings/Categories/Debug.svelte b/src/lib/Settings/Categories/Debug.svelte index 2e2e64bd..04bb0985 100644 --- a/src/lib/Settings/Categories/Debug.svelte +++ b/src/lib/Settings/Categories/Debug.svelte @@ -3,6 +3,7 @@ import { getNotificationsContext } from 'svelte-notifications'; import SettingHint from '../SettingHint.svelte'; import { options } from '$lib/Notification/options'; + import tooltip from '$lib/Tooltip/tooltip'; const { addNotification } = getNotificationsContext(); </script> @@ -45,7 +46,7 @@ heading: '<code>localStorage</code> successfully cleared' }) ); - }}>Clear <code>localStorage</code></button + }}>Clear <code title="Local browser key/value pair store" use:tooltip>localStorage</code></button > <SettingHint lineBreak> Resets all of your settings to their default values and clears both AniList media list and manga |