Browse Source

Bring back title attribute on logo.

pull/193/head
Simon Eisenmann 10 years ago
parent
commit
fff50faa2d
  1. 9
      static/js/app.js

9
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; return app;
}; };

Loading…
Cancel
Save