user input > atv.storage working :) + some minor changes

This commit is contained in:
2024-02-13 20:48:56 +01:00
parent d92c88be6f
commit 512ef3b357
10 changed files with 445 additions and 239 deletions

View File

@@ -4,7 +4,7 @@
function printSessionStorage() {
var keys = ['test', 'exampleKey2', 'exampleKey3'];
var keys = ['test', 'exampleKey'];
keys.forEach(function(key) {
var value = atv.sessionStorage.getItem(key);
@@ -18,7 +18,7 @@ function printSessionStorage() {
function printLocalStorage() {
var keys = ['test', 'exampleKey2', 'exampleKey3'];
var keys = ['test', 'jellyfin_server_address', 'jellyfin_username', 'jellyfin_password', 'jellyfin_auth'];
keys.forEach(function(key) {
var value = atv.localStorage.getItem(key);