contacts/js/components/importScreen/importScreen_directive.js

12 lines
317 B
JavaScript

angular.module('contactsApp')
.directive('importscreen', function() {
return {
restrict: 'EA', // has to be an attribute to work with core css
scope: {},
controller: 'importscreenCtrl',
controllerAs: 'ctrl',
bindToController: {},
templateUrl: OC.linkTo('contacts', 'templates/importScreen.html')
};
});