mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 23:55:47 -06:00
14 lines
239 B
JavaScript
14 lines
239 B
JavaScript
define([
|
|
'app/core/settings',
|
|
],
|
|
function (Settings) {
|
|
"use strict";
|
|
|
|
var bootData = window.grafanaBootData || { settings: {} };
|
|
var options = bootData.settings;
|
|
options.bootData = bootData;
|
|
|
|
return new Settings(options);
|
|
|
|
});
|