UNPKG

gaf-mobile

Version:

GAF mobile Web site

17 lines (15 loc) 377 B
'use strict'; angular.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() { } }; });