mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
shore: migrating config/settings.js to typescript
This commit is contained in:
@@ -5,8 +5,7 @@ define([
|
||||
'jquery',
|
||||
'app/core/utils/kbn',
|
||||
'app/core/utils/datemath',
|
||||
'./impression_store',
|
||||
'app/core/config',
|
||||
'./impression_store'
|
||||
],
|
||||
function (angular, moment, _, $, kbn, dateMath, impressionStore) {
|
||||
'use strict';
|
||||
|
||||
@@ -7,6 +7,8 @@ define(['angular',
|
||||
function (angular, _, $, moment, config) {
|
||||
'use strict';
|
||||
|
||||
config = config.default;
|
||||
|
||||
var module = angular.module('grafana.controllers');
|
||||
|
||||
module.controller('ShareModalCtrl', function($scope, $rootScope, $location, $timeout, timeSrv, templateSrv, linkSrv) {
|
||||
|
||||
@@ -7,6 +7,7 @@ define([
|
||||
function (angular, _, $, config) {
|
||||
'use strict';
|
||||
|
||||
config = config.default;
|
||||
var module = angular.module('grafana.services');
|
||||
|
||||
module.factory('dashboardViewStateSrv', function($location, $timeout) {
|
||||
|
||||
@@ -5,6 +5,8 @@ define([
|
||||
function (angular, config) {
|
||||
'use strict';
|
||||
|
||||
config = config.default;
|
||||
|
||||
var module = angular.module('grafana.controllers');
|
||||
|
||||
module.controller('ChangePasswordCtrl', function($scope, backendSrv, $location, navModelSrv) {
|
||||
|
||||
@@ -5,6 +5,8 @@ define([
|
||||
function (angular, config) {
|
||||
'use strict';
|
||||
|
||||
config = config.default;
|
||||
|
||||
var module = angular.module('grafana.controllers');
|
||||
|
||||
module.controller('NewOrgCtrl', function($scope, $http, backendSrv, navModelSrv) {
|
||||
|
||||
@@ -5,6 +5,8 @@ define([
|
||||
function (angular, config) {
|
||||
'use strict';
|
||||
|
||||
config = config.default;
|
||||
|
||||
var module = angular.module('grafana.controllers');
|
||||
|
||||
module.controller('SelectOrgCtrl', function($scope, backendSrv, contextSrv) {
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
define([
|
||||
'angular',
|
||||
'app/core/config',
|
||||
'lodash'
|
||||
],
|
||||
function (angular) {
|
||||
|
||||
@@ -8,6 +8,8 @@ define([
|
||||
function (angular, _, coreModule, config, pluginLoader) {
|
||||
'use strict';
|
||||
|
||||
config = config.default;
|
||||
|
||||
coreModule.default.service('datasourceSrv', function($q, $injector, $rootScope, templateSrv) {
|
||||
var self = this;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user