blob: 12c9f7605f7b3f6f6325873a52554958ba8b01b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
var apps_current;
function apps_select(app) {
switch(app) {
case "musicpools":
$('#app-shows').hide();
$('#nav-btn-shows').removeClass('active');
$('#app-musicpools').show();
$('#nav-btn-musicpools').addClass('active');
musicpools_init();
break;
default:
$('#app-shows').show();
$('#nav-btn-shows').addClass('active');
$('#app-musicpools').hide();
$('#nav-btn-musicpools').removeClass('active');
apps_current = 'shows';
shows_init();
}
sessionStorage.setItem("apps_current", app);
}
function apps_init() {
apps_current = sessionStorage.getItem("apps_current");
apps_select(apps_current);
}
function apps_cleanup() {
shows_cleanup();
musicpools_cleanup();
sessionStorage.removeItem("apps_current");
delete apps_current;
}
|