(function() { "use strict"; var app = angular.module("licencingAdmin"); var templatePath = modulesSharedResourcesUrl + "Modules/LicencingAdmin/Views/"; //a directive that renders the licensing popup app.directive("licenceSelectorModal", [ "licencingAdminDataContext", "$modal", function(datacontext, $modal) { return { restrict: "E", scope: {}, templateUrl: templatePath + "licenceSelectorModal.html?version=160718", link: link }; function link(scope, elem, attrs) { scope.licenceAllocationsLoaded = false; } } ]); })();