note-panel.js
angular.module('homepage').
directive('notePanel', function () {
return {
//controller: 'notePanelController',
restrict: 'E',
replace: true,
scope: {
note: '='
},
templateUrl: 'components/feature-components/note/note-panel.html'
}
});