rename app config directive to grafana-app-*

This commit is contained in:
woodsaj
2015-12-17 23:59:01 +08:00
parent c35b51a268
commit 42db1378e0
3 changed files with 7 additions and 7 deletions
@@ -0,0 +1,3 @@
<div>
{{current.type}} app does not have any additional config.
</div>
@@ -1,3 +0,0 @@
<div>
{{current.type}} plugin does not have any additional config.
</div>
+4 -4
View File
@@ -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() {