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') }; });