| 12345678910111213141516171819202122 |
- import coreModule from 'app/core/core_module';
- export class GeneralTabCtrl {
- panelCtrl: any;
- /** @ngInject */
- constructor($scope) {
- this.panelCtrl = $scope.ctrl;
- }
- }
- /** @ngInject */
- export function generalTab() {
- 'use strict';
- return {
- restrict: 'E',
- templateUrl: 'public/app/features/panel/partials/general_tab.html',
- controller: GeneralTabCtrl,
- };
- }
- coreModule.directive('panelGeneralTab', generalTab);
|