(function () { 'use strict'; var app = angular.module('fullScreenLoader'); //a directive that renders the licensing popup app.directive('fullScreenLoaderDiv', ['fullScreenLoaderConfig', function (config) { return { restrict: 'EA', scope: { }, templateUrl: config.templatePath + 'fullScreenLoader.html?version=160718', link: link }; function link(scope, elem, attrs) { scope.licenceAllocationsLoaded = false; } }]); })();