summaryrefslogtreecommitdiff
path: root/js/shows.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/shows.js')
-rw-r--r--js/shows.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/js/shows.js b/js/shows.js
index 6b272bf..d12563c 100644
--- a/js/shows.js
+++ b/js/shows.js
@@ -154,11 +154,33 @@ function shows_updateList(data, status, req) {
shows_showSelected();
}
+function draw_current_week()
+{
+ var weekspan = $('#current-week').removeClass().addClass('label');
+ switch(get_rd_week()) {
+ case 1:
+ weekspan.addClass('label-info').text('Woche 1');
+ break;
+ case 2:
+ weekspan.addClass('label-warning').text('Woche 2');
+ break;
+ case 3:
+ weekspan.addClass('label-success').text('Woche 3');
+ break;
+ case 4:
+ weekspan.addClass('label-important').text('Woche 4');
+ break;
+ default:
+ weekspan.addClass('label-inverse').text('Fehler');
+ }
+}
+
function shows_init() {
shows_currentid = sessionStorage.getItem("shows_currentid");
shows_list = [];
data = { LOGIN_NAME: auth_username, PASSWORD: auth_token };
$.post("/rh-bin/listdropboxes.cgi", data, shows_updateList, "xml")
+ draw_current_week();
}
function shows_cleanup() {