mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
23 lines
479 B
TypeScript
23 lines
479 B
TypeScript
export class HeatmapDisplayEditorCtrl {
|
|
panel: any;
|
|
panelCtrl: any;
|
|
|
|
/** @ngInject */
|
|
constructor($scope: any) {
|
|
$scope.editor = this;
|
|
this.panelCtrl = $scope.ctrl;
|
|
this.panel = this.panelCtrl.panel;
|
|
}
|
|
}
|
|
|
|
/** @ngInject */
|
|
export function heatmapDisplayEditor() {
|
|
'use strict';
|
|
return {
|
|
restrict: 'E',
|
|
scope: true,
|
|
templateUrl: 'public/app/plugins/panel/heatmap/partials/display_editor.html',
|
|
controller: HeatmapDisplayEditorCtrl,
|
|
};
|
|
}
|