diff --git a/src/settings.ts b/src/settings.ts
index d10042b..60cf160 100644
--- a/src/settings.ts
+++ b/src/settings.ts
@@ -4,6 +4,18 @@ document.querySelector('#content').innerHTML = `
Raspberry Settings
+
+`;
@@ -48,4 +60,12 @@ async function addKeySetter(functionName: string, displayName?: string)
else
await addKeySetter(keybinds[i].functionName);
}
+
+ // Other settings
+ (document.querySelector('#jump-point') as HTMLInputElement).value = await getStorageValue('jp');
+ document.querySelector('#set-jump-point').addEventListener('click', async (e: MouseEvent): Promise =>
+ {
+ const jumpPoint: string = canonicalize((document.querySelector('#jump-point') as HTMLInputElement).value);
+ await setStorageValue('jp', jumpPoint);
+ });
})();
\ No newline at end of file