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

18 lines
349 B
JavaScript

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