From fff50faa2d62bddb1dacd37992c249bd9463966d Mon Sep 17 00:00:00 2001 From: Simon Eisenmann Date: Mon, 20 Apr 2015 14:36:22 +0200 Subject: [PATCH] Bring back title attribute on logo. --- static/js/app.js | 9 +++++++++ 1 file changed, 9 insertions(+) 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; };