6coloquio/js/calprog.js
German Correa 2cf39613da Agrega plenaria de Umberto
Agrega facebbok y comentarios en el sidebar
mejora link de cronograma
2017-11-28 17:23:51 -03:00

34 lines
600 B
JavaScript

$(document).ready(function(){
$("#calendario").fullCalendar({
locale: 'es',
schedulerLicenseKey: 'CC-Attribution-NonCommercial-NoDerivatives',
defaultDate: '2017-12-21',
defaultView: 'agendaWeek',
visibleRange:{
start: '2017-12-21',
end: '2017-12-23'
},
allDaySlot: false,
minTime: "08:00:00",
maxTime: "22:00:00",
resources: [
{ id:"s1", title: "Salon 1"},
{ id:"s2", title: "Salon 2"},
],
events: [
{
id:"1",
resourceid: 's1',
title: "Charla Pedorra",
start: "2017-12-21T12:00",
end: "2017-12-21T13:00"
}
]
});
});