note-card.js
angular.module('homepage').
directive('noteCard', function () {
function NoteCardLinkerFn(scope, element, attributes) {
}
return {
//controller: 'NoteCardController',
//link: NoteCardLinkerFn,
restrict: 'E',
replace: true,
scope: {
noteData: '='
},
transclude: true,
templateUrl: 'components/feature-components/note/note-card.html'
}
});