summaryrefslogtreecommitdiffstats
path: root/js/components/group/group_directive.js
blob: d7b53846d02ef65765eb21fe57cd29baaec2c6f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
app.directive('group', function() {
	return {
		restrict: 'A', // has to be an attribute to work with core css
		scope: {},
		controller: 'groupCtrl',
		controllerAs: 'ctrl',
		bindToController: {
			group: "=data"
		},
		templateUrl: OC.linkTo('contacts', 'templates/group.html')
	};
});