Files
portainer/app/portainer/components/code-editor/code-editor.js
T
2018-10-14 19:02:36 +03:00

15 lines
296 B
JavaScript

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