summaryrefslogtreecommitdiff
path: root/js/apps.js
blob: c852cd4db0f0d11823f09b2a0d8d5ce29fe16dec (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", apps_current);
    }

    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;
    }