mirror of https://github.com/portainer/portainer
16 lines
375 B
JavaScript
16 lines
375 B
JavaScript
import angular from 'angular';
|
|
import controller from './be-feature-indicator.controller.js';
|
|
|
|
import './be-feature-indicator.css';
|
|
|
|
export const beFeatureIndicator = {
|
|
templateUrl: './be-feature-indicator.html',
|
|
controller,
|
|
bindings: {
|
|
feature: '<',
|
|
},
|
|
transclude: true,
|
|
};
|
|
|
|
angular.module('portainer.app').component('beFeatureIndicator', beFeatureIndicator);
|