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') }; });