2014-03-22 13:45:02 +01:00
|
|
|
define([],
|
|
|
|
|
function() {
|
2014-04-06 10:47:14 +02:00
|
|
|
'use strict';
|
2014-03-22 13:45:02 +01:00
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
create: function() {
|
|
|
|
|
return {
|
2014-07-07 19:04:22 +02:00
|
|
|
title: "",
|
|
|
|
|
tags: [],
|
|
|
|
|
style: "dark",
|
|
|
|
|
timezone: 'browser',
|
|
|
|
|
editable: true,
|
|
|
|
|
failover: false,
|
|
|
|
|
panel_hints: true,
|
|
|
|
|
rows: [],
|
|
|
|
|
pulldowns: [ { type: 'templating' }, { type: 'annotations' } ],
|
|
|
|
|
nav: [ { type: 'timepicker' } ],
|
2015-12-04 10:32:23 +01:00
|
|
|
time: {from: 'now-6h', to: 'now'},
|
2014-08-05 10:15:27 +02:00
|
|
|
templating: {
|
|
|
|
|
list: []
|
2014-07-07 19:04:22 +02:00
|
|
|
},
|
2014-08-27 17:58:49 +02:00
|
|
|
refresh: '10s',
|
2014-04-06 10:47:14 +02:00
|
|
|
};
|
2014-03-22 13:45:02 +01:00
|
|
|
}
|
2014-04-06 10:47:14 +02:00
|
|
|
};
|
2014-03-22 13:45:02 +01:00
|
|
|
});
|