gaf-mobile
Version:
GAF mobile Web site
17 lines (15 loc) • 377 B
JavaScript
module('gafMobileApp')
.directive('projectItem', function() {
return {
restrict: 'E',
templateUrl: 'components/project-item/project-item.html',
scope: {
project: '=', // project object
},
transclude: true,
controllerAs: 'ctrl',
bindToController: true,
controller: function() { }
};
});
;
angular.