summaryrefslogtreecommitdiff
path: root/slideshows/default/template/events.js
diff options
context:
space:
mode:
Diffstat (limited to 'slideshows/default/template/events.js')
-rw-r--r--slideshows/default/template/events.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/slideshows/default/template/events.js b/slideshows/default/template/events.js
index a6202ff..9d69547 100644
--- a/slideshows/default/template/events.js
+++ b/slideshows/default/template/events.js
@@ -9,4 +9,17 @@ $(document).ready(function(){
var marg = $('.event').outerWidth(true) - $('.event').outerWidth();
$('.event').width((screenWidth-(tot * (bord+padd+marg)))/tot);
+ $('.eventDate').each(function(index, value) {
+ var colours = ['blue', 'green', 'chreme'];
+ $(this).addClass(colours[index % 3]);
+ });
+
+ $('.eventField').each(function(index, value) {
+ var classStr = $(this).attr('class').split(/\s+/);
+ if(classStr.indexOf('start') != -1) {
+ $(this).show();
+ } else if(classStr.indexOf('summary') != -1) {
+ $(this).show();
+ }
+ });
});