portainer/app/portainer/components/code-editor/code-editor.js

15 lines
295 B
JavaScript

import controller from './code-editor.controller';
angular.module('portainer.app').component('codeEditor', {
templateUrl: './code-editor.html',
controller,
bindings: {
identifier: '@',
placeholder: '@',
yml: '<',
readOnly: '<',
onChange: '<',
value: '<',
},
});