(function () { 'use strict'; var app = angular.module('myBadgesSelector'); var templatePath = modulesSharedResourcesUrl + 'Modules/MyBadgesSelector/Views/'; //a directive that renders the licensing popup app.directive('myBadgesSelectorModal', ['myBadgesSelectorDataContext', '$modal', function (datacontext, $modal) { return { restrict: 'EA', scope: { }, templateUrl: templatePath + 'myBadgesSelectorModal.html', link: link }; function link(scope, elem, attrs) { } }]); })();