summaryrefslogtreecommitdiffstats
path: root/js/components/contactDetails/contactDetails_directive.js
blob: 23c67eb69e1fea621d9411424acbd65e77657bdd (plain)
1
2
3
4
5
6
7
8
9
10
11
angular.module('contactsApp')
.directive('contactdetails', function() {
	return {
		priority: 1,
		scope: {},
		controller: 'contactdetailsCtrl',
		controllerAs: 'ctrl',
		bindToController: {},
		templateUrl: OC.linkTo('contacts', 'templates/contactDetails.html')
	};
});