Issue 1775: Blink an event
Status:  Invalid
Owner: ----
Closed:  Aug 2013
Reported by chammam....@gmail.com, Apr 8, 2013
I want to blink the event in the calendar I have change color.

var rdv=$('#calendar').fullCalendar( 'clientEvents');
	for (i=0; i<=rdv.length-1; i++) {
	
		if(rdv[i].id==id){
		rdv[i].backgroundColor='red';
		rdv[i].borderColor='red';
	
		$('#calendar').fullCalendar('renderEvent', id );
setInterval(function(){
      $(rdv[i]).fadeOut(900).delay(300).fadeIn(800);
       },2200);
   }

but there is no animation!! what should I do?
Aug 24, 2013
Project Member #2 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Invalid