| 123456789101112131415161718192021222324252627282930 |
- define([
- 'angular',
- 'app',
- 'underscore'
- ],
- function (angular, app, _) {
- 'use strict';
- angular
- .module('kibana.directives')
- .directive('addPanel', function($compile) {
- return {
- restrict: 'A',
- link: function($scope, elem) {
- $scope.$watch('panel.type', function() {
- var _type = $scope.panel.type;
- $scope.reset_panel(_type);
- if(!_.isUndefined($scope.panel.type)) {
- $scope.panel.loadingEditor = true;
- $scope.require(['panels/'+$scope.panel.type+'/module'], function () {
- var template = '<div ng-controller="'+$scope.panel.type+'" ng-include="\'app/partials/paneladd.html\'"></div>';
- elem.html($compile(angular.element(template))($scope));
- $scope.panel.loadingEditor = false;
- });
- }
- });
- }
- };
- });
- });
|