diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-02-05 05:41:12 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-02-05 05:41:12 (GMT) |
commit | 03fbbad064dbe70eff2f35455ecb3f2c9f04ade8 (patch) | |
tree | 90fa778bc864832f4dc98a50f04bb9a41b9b05c0 | |
parent | 68ad409c5c4c305500ce70184535dabad353252b (diff) |
fixed clock colors
-rw-r--r-- | www/js/clock.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/js/clock.js b/www/js/clock.js index d3817c4..0527680 100644 --- a/www/js/clock.js +++ b/www/js/clock.js @@ -134,9 +134,9 @@ function drawClock(date, time, week) { weekspan.addClass('label-success').text('Woche 3'); break; case 4: - weekspan.addClass('label-important').text('Woche 4'); + weekspan.addClass('label-danger').text('Woche 4'); break; default: - weekspan.addClass('label-inverse').text('Fehler'); + weekspan.addClass('label-default').text('Fehler'); } } |