calendar-card.js
angular.module('homepage').
directive('calendarCard', function () {
function CalendarCardLinkerFn(scope, element, attributes) {
}
return {
//controller: 'CalendarCardController',
//link: CalendarCardLinkerFn,
restrict: 'E',
replace: true,
scope: {
calendarData: '='
},
transclude: true,
templateUrl: 'components/feature-components/calendar/calendar-card.html'
}
});