mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 09:05:45 -06:00
13 lines
199 B
JavaScript
13 lines
199 B
JavaScript
|
define([
|
||
|
'settings',
|
||
|
],
|
||
|
function (Settings) {
|
||
|
"use strict";
|
||
|
|
||
|
var bootData = window.grafanaBootData || { settings: {} };
|
||
|
var options = bootData.settings;
|
||
|
|
||
|
return new Settings(options);
|
||
|
|
||
|
});
|