Body text goes here, some HTML is OK", "tag":"This is Optional", "classname":"optionaluniqueclassnamecanbeaddedhere", "asset": { "media":"http://twitter.com/ArjunaSoriano/status/164181156147900416", "thumbnail":"optional-32x32px.jpg", "credit":"Credit Name Goes Here", "caption":"Caption text goes here" } }, { "startDate":"2012,12,10", "endDate":"2012,12,11", "headline":"Headline Goes Here", "text":"
Body text goes here, some HTML is OK", "tag":"This is Optional", "classname":"optionaluniqueclassnamecanbeaddedhere", "asset": { "media":"http://twitter.com/ArjunaSoriano/status/164181156147900416", "thumbnail":"optional-32x32px.jpg", "credit":"Credit Name Goes Here", "caption":"Caption text goes here" } } ] } }; console.log("defining data done."); $.getJSON( "/oosa/en/timeline-icg/waxs.json", function( waxs ) { var dataEvents = [] console.dir(waxs); $(waxs.results).each( function( key, waxsDoc) { console.log(waxsDoc.id); var event = { startDate: waxsDoc.values['timelineEvent.startDate_s1'].replace(/-/g, ',') ,endDate: waxsDoc.values['timelineEvent.endDate_s1'].replace(/-/g, ',') ,headline: waxsDoc.values['timelineEvent.headline_s1'] ,text: waxsDoc.values['//timelineEvent/text'] }; if (waxsDoc.values['timelineEvent.media@path_s1']!=null) { event.asset = { "media":'/res'+waxsDoc.values['timelineEvent.media@path_s1'], "thumbnail":'/res'+waxsDoc.values['timelineEvent.media@path_s1'], "credit":waxsDoc.values['timelineEvent.mediaCredit_s1'], "caption":waxsDoc.values['//timelineEvent/mediaCaption'] } } dataEvents.push(event); }); console.dir(dataEvents); data.timeline.date=dataEvents; createStoryJS({ type: 'timeline', width: '100%', height: '600', source: data, css: '/misc/timeline.css', //OPTIONAL PATH TO CSS start_zoom_adjust: '3', //OPTIONAL TWEAK THE DEFAULT ZOOM LEVEL embed_id: 'my-timeline' }); }); /* var timeline_config = { width: '100%', height: '600', source: 'path_to_json/or_link_to_googlespreadsheet', embed_id: 'timeline-embed', //OPTIONAL USE A DIFFERENT DIV ID FOR EMBED start_at_end: false, //OPTIONAL START AT LATEST DATE start_at_slide: '4', //OPTIONAL START AT SPECIFIC SLIDE start_zoom_adjust: '3', //OPTIONAL TWEAK THE DEFAULT ZOOM LEVEL hash_bookmark: true, //OPTIONAL LOCATION BAR HASHES font: 'Bevan-PotanoSans', //OPTIONAL FONT debug: true, //OPTIONAL DEBUG TO CONSOLE lang: 'fr', //OPTIONAL LANGUAGE maptype: 'watercolor', //OPTIONAL MAP STYLE css: 'path_to_css/timeline.css', //OPTIONAL PATH TO CSS js: 'path_to_js/timeline-min.js' //OPTIONAL PATH TO JS } */ $(document).ready(function() { });