angular-ui / ui-calendar

A complete AngularJS directive for the Arshaw FullCalendar.
http://angular-ui.github.io/ui-calendar/
MIT License
1.49k stars 727 forks source link

dayClick callback with this == undefined #263

Open sebasgavi opened 9 years ago

sebasgavi commented 9 years ago

Trying to use the dayClick callback:

dayClick: function ( date, jsEvent, view ){ $log.log(this); }

'this' should be the element of that day, but it's always undefined

joshkurz commented 9 years ago

I believe this https://github.com/angular-ui/ui-calendar/commit/bce26163b0147927a95a6f0967163d958f99c26f fixed the issue. Can you double check with latest master? Thanks

sebasgavi commented 9 years ago

yes, that solved the problem

thanks.