summaryrefslogtreecommitdiffstats
path: root/js/components/contact/contact_controller.js
blob: 5c4d7311223be478ce345698eb0c8effcfe7a655 (plain)
1
2
3
4
5
6
7
8
9
10
angular.module('contactsApp')
.controller('contactCtrl', function($route, $routeParams) {
	var ctrl = this;

	ctrl.openContact = function() {
		$route.updateParams({
			gid: $routeParams.gid,
			uid: ctrl.contact.uid()});
	};
});