career-objective.js
angular.module('homepage').
directive('careerObjective', function() {
return {
restrict: 'E',
replace: true,
scope: {
objective: '=data'
},
templateUrl: 'components/content-components/input/career-objective.html',
controller: 'careerObjectiveController'
};
}).
controller('careerObjectiveController', function($scope) {
});