mirror of
https://github.com/grafana/grafana.git
synced 2026-07-30 08:18:10 -05:00
Conflicts: public/app/plugins/panels/table/editor.ts public/views/index.html
21 lines
439 B
JavaScript
21 lines
439 B
JavaScript
define([
|
|
'lodash',
|
|
],
|
|
function (_) {
|
|
"use strict";
|
|
|
|
return function Settings (options) {
|
|
var defaults = {
|
|
datasources : {},
|
|
window_title_prefix : 'Grafana - ',
|
|
panels : {},
|
|
new_panel_title: 'Panel Title',
|
|
playlist_timespan: "1m",
|
|
unsaved_changes_warning: true,
|
|
appSubUrl: ""
|
|
};
|
|
|
|
return _.extend({}, defaults, options);
|
|
};
|
|
});
|