contacts/js/components/group/group_directive.js

14 lines
317 B
JavaScript
Raw Normal View History

angular.module('contactsApp')
.directive('group', function() {
2016-02-12 12:48:46 +00:00
return {
restrict: 'A', // has to be an attribute to work with core css
scope: {},
controller: 'groupCtrl',
controllerAs: 'ctrl',
bindToController: {
group: '=group'
2016-02-12 12:48:46 +00:00
},
2016-02-29 12:43:05 +00:00
templateUrl: OC.linkTo('contacts', 'templates/group.html')
2016-02-12 12:48:46 +00:00
};
});