diff options
author | Christian Pointner <equinox@helsinki.at> | 2015-07-31 20:46:53 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2015-07-31 20:46:53 (GMT) |
commit | fb12b6318b4a36fc3826d47b4d31d38062505106 (patch) | |
tree | d3164895ada96bd9ab15f71a62148b8420e21169 | |
parent | 032b6bcaf2b6811144325e504d6d7edfa248c508 (diff) |
removed now useless sessionStorage.removeItem for apps_current
-rw-r--r-- | www/js/apps.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/www/js/apps.js b/www/js/apps.js index a351925..dcabe98 100644 --- a/www/js/apps.js +++ b/www/js/apps.js @@ -56,7 +56,7 @@ function apps_select(app) { $('#app-shows').show(); $('#nav-btn-shows').addClass('active'); - apps_current = app = 'shows'; + apps_current = app = 'shows'; shows_init(); } if (locationHashValue() !== app) { @@ -85,6 +85,5 @@ function apps_cleanup() { $(window).off('popstate'); - sessionStorage.removeItem("apps_current"); delete apps_current; } |