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