Commit edd8d63c by Torkel Ödegaard

Merge branch 'master' of github.com:famousgarkin/grafana into famousgarkin-master

parents ffbdea78 2b1dcaf5
...@@ -14,6 +14,7 @@ function (_, crypto) { ...@@ -14,6 +14,7 @@ function (_, crypto) {
*/ */
var defaults = { var defaults = {
datasources : {}, datasources : {},
title : 'Grafana - ',
panels : ['graph', 'text'], panels : ['graph', 'text'],
plugins : {}, plugins : {},
default_route : '/dashboard/file/default.json', default_route : '/dashboard/file/default.json',
......
...@@ -56,7 +56,7 @@ function (angular, $, config, _) { ...@@ -56,7 +56,7 @@ function (angular, $, config, _) {
$scope.panelMoveOver = panelMove.onOver; $scope.panelMoveOver = panelMove.onOver;
$scope.panelMoveOut = panelMove.onOut; $scope.panelMoveOut = panelMove.onOut;
window.document.title = 'Grafana - ' + $scope.dashboard.title; window.document.title = (config.title ? config.title : '') + $scope.dashboard.title;
// start auto refresh // start auto refresh
if($scope.dashboard.refresh) { if($scope.dashboard.refresh) {
......
...@@ -73,6 +73,17 @@ function (Settings) { ...@@ -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 // specify the limit for dashboard search results
search: { search: {
max_results: 20 max_results: 20
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment