Przeglądaj źródła

added global page title prefix setting

unknown 11 lat temu
rodzic
commit
2b1dcaf5e3

+ 1 - 0
src/app/components/settings.js

@@ -14,6 +14,7 @@ function (_, crypto) {
      */
     var defaults = {
       datasources                   : {},
+      title                         : 'Grafana - ',
       panels                        : ['graph', 'text'],
       plugins                       : {},
       default_route                 : '/dashboard/file/default.json',

+ 1 - 1
src/app/controllers/dash.js

@@ -40,7 +40,7 @@ function (angular, $, config, _) {
       $scope.panelMoveOver = panelMove.onOver;
       $scope.panelMoveOut = panelMove.onOut;
 
-      window.document.title = 'Grafana - ' + $scope.dashboard.title;
+      window.document.title = (config.title ? config.title : '') + $scope.dashboard.title;
 
       // start auto refresh
       if($scope.dashboard.refresh) {

+ 11 - 0
src/config.sample.js

@@ -73,6 +73,17 @@ function (Settings) {
     * ========================================================
     */
 
+    /* title:
+    * The global page title prefix that is prepended before the specific dashboard titles.
+    * Defaults to 'Grafana - '.
+    *
+    * title: undefined, // default prefix, page title = 'Grafana - <dashboard title>'
+    * title: null, // no prefix, page title = <dashboard title>
+    * title: '', // no prefix, page title = <dashboard title>
+    * title: 'Custom | ', // custom prefix, page title = 'Custom | <dashboard title>'
+    */
+    title: undefined,
+
     // specify the limit for dashboard search results
     search: {
       max_results: 20