summaryrefslogtreecommitdiff
path: root/www/js/apps.js
diff options
context:
space:
mode:
Diffstat (limited to 'www/js/apps.js')
-rw-r--r--www/js/apps.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/www/js/apps.js b/www/js/apps.js
index dcabe98..249947a 100644
--- a/www/js/apps.js
+++ b/www/js/apps.js
@@ -59,13 +59,13 @@ function apps_select(app) {
apps_current = app = 'shows';
shows_init();
}
- if (locationHashValue() !== app) {
- history.pushState(null, null, '/#' + app + '/');
+ if (locationHrefValue() !== app) {
+ history.pushState(null, null, '/' + app + '/');
}
}
function apps_init() {
- apps_current = locationHashValue();
+ apps_current = locationHrefValue();
if(auth_token && auth_username) {
apps_select(apps_current);
@@ -73,7 +73,7 @@ function apps_init() {
$(window).on('popstate', function(event) {
if(auth_token && auth_username) {
- apps_select(locationHashValue());
+ apps_select(locationHrefValue());
}
});
}