From b83f34c7634bd308be74285736d28bd6ac1d80eb Mon Sep 17 00:00:00 2001 From: Benjamin Kiessling Date: Thu, 12 Jan 2012 22:25:40 +0100 Subject: Update example for new event file format --- slideshows/default/template/events.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'slideshows/default/template/events.js') 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(); + } + }); }); -- cgit v1.2.1