(function () { 'use strict'; var app = angular.module('user'); var templatePath = modulesSharedResourcesUrl + 'Modules/User/Views/Directives/'; //directive to display a users avatar app.directive('userAvatarDisplay', function () { return { restrict: 'E', templateUrl: templatePath + "avatar.html", scope: { size: "=", url: "=", online: "=", center: '=', userId: '=', disableLink: '=', } }; }); })();