mirror of
https://github.com/grafana/grafana.git
synced 2025-02-04 12:41:12 -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);
|
|
|
|
});
|