diff --git a/static/js/app.js b/static/js/app.js index ca3992d0..2317b38f 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -195,6 +195,15 @@ define([ } }]); + app.directive("uiLogo", ["globalContext", function(globalContext) { + return { + restrict: "A", + link: function($scope, $element, $attrs) { + $attrs.$set("title", globalContext.Cfg.Title || ""); + } + } + }]); + return app; };