I am using http://angular-ui.github.io/ui-calendar/ in my application.
I want to add birthday event that repeat each year.
for example
student 1 birthday is 12-jan-2006.
$scope.birthdayEvent = [
{title:'ABC',start:'2006-1-12',allDay: true,stick:true}]
This is show event in 2006 calendar.
I want this event to be shown all years the 12th January. How can I do it?