danillocesar

Results 2 comments of danillocesar

`$scope.calendar.eventSource = loadEvents(); function loadEvents() { var events = []; for (e in eventosReservados) { var startTime = new Date(eventosReservados[e].inicio); var endTime = new Date(eventosReservados[e].fim); events.push({ title: eventosReservados[e].titulo, startTime: startTime,...

I have that div with some inputs and selects and i need them to go down as the events are showing. i tried to put "position: relative" in the event...