Przeglądaj źródła

rename app config directive to grafana-app-*

woodsaj 10 lat temu
rodzic
commit
42db1378e0

+ 3 - 0
public/app/features/org/partials/appConfigCore.html

@@ -0,0 +1,3 @@
+<div>
+{{current.type}} app does not have any additional config.
+</div>

+ 0 - 3
public/app/features/org/partials/pluginConfigCore.html

@@ -1,3 +0,0 @@
-<div>
-{{current.type}} plugin does not have any additional config.
-</div>

+ 4 - 4
public/app/features/org/plugin_directive.js

@@ -10,12 +10,12 @@ function (angular) {
     return {
       restrict: 'E',
       link: function(scope, elem) {
-        var directive = 'grafana-plugin-core';
+        var directive = 'grafana-app-core';
         //wait for the parent scope to be applied.
         scope.$watch("current", function(newVal) {
           if (newVal) {
             if (newVal.module) {
-              directive = 'grafana-plugin-'+newVal.type;
+              directive = 'grafana-app-'+newVal.type;
             }
             scope.require([newVal.module], function () {
               var panelEl = angular.element(document.createElement(directive));
@@ -28,10 +28,10 @@ function (angular) {
     };
   });
 
-  module.directive('grafanaPluginCore', function() {
+  module.directive('grafanaAppCore', function() {
     return {
       restrict: 'E',
-      templateUrl: 'app/features/org/partials/pluginConfigCore.html',
+      templateUrl: 'app/features/org/partials/appConfigCore.html',
       transclude: true,
       link: function(scope) {
         scope.update = function() {