contacts/js/components/groupList/groupList_directive.js

12 lines
308 B
JavaScript

angular.module('contactsApp')
.directive('grouplist', function() {
return {
restrict: 'EA', // has to be an attribute to work with core css
scope: {},
controller: 'grouplistCtrl',
controllerAs: 'ctrl',
bindToController: {},
templateUrl: OC.linkTo('contacts', 'templates/groupList.html')
};
});