template.js 327 B

1234567891011
  1. window.moment = moment;
  2. Template.fullcalendar.rendered = function() {
  3. var div = this.$(this.firstNode);
  4. if(this.data != null) {
  5. //jquery takes care of undefined values, no need to check here
  6. div.attr('id', this.data.id);
  7. div.addClass(this.data.class);
  8. }
  9. div.fullCalendar(this.data);
  10. };