summaryrefslogtreecommitdiffstats
path: root/js/components/contactList/contactList_directive.js
blob: ba0315d104ff68728827c02bec9c38b089233927 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
angular.module('contactsApp')
.directive('contactlist', function() {
	return {
		priority: 1,
		scope: {},
		controller: 'contactlistCtrl',
		controllerAs: 'ctrl',
		bindToController: {
			addressbook: '=adrbook'
		},
		templateUrl: OC.linkTo('contacts', 'templates/contactList.html')
	};
});