mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 05:29:42 -06:00
ee0e4d2b69
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);
|
|
};
|
|
});
|