contacts/js/components/contact/contact_directive.js

13 lines
259 B
JavaScript
Raw Normal View History

angular.module('contactsApp')
.directive('contact', function() {
2015-10-27 17:52:09 +00:00
return {
scope: {},
controller: 'contactCtrl',
controllerAs: 'ctrl',
bindToController: {
2015-11-05 15:33:30 +00:00
contact: '=data'
2015-10-27 17:52:09 +00:00
},
2016-02-29 12:43:05 +00:00
templateUrl: OC.linkTo('contacts', 'templates/contact.html')
};
2016-02-22 20:34:10 +00:00
});