Im trying to implement mattlewis92's angular calendar (https://github.com/mattlewis92/angular-calendar) and I can't figure out what i need to inclide to have a working header component.
Problems:
<h3>{{ viewDate | calendarDate:(view + 'ViewTitle'):'en' }}</h3>
this.dateFormatter[method] is not a function
but it works when:
<h3>{{ viewDate | calendarDate:('dayViewTitle'):'en' }}</h3>
other:
TypeError: addFn is not a function
at CalendarNextViewDirective.onClick (calendar-next-view.directive.js:33)
same with previus date.
Has anyone suggestion?