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

9 lines
179 B
JavaScript

/* @ngInject */
export default function CodeEditorController($scope) {
this.handleChange = (value) => {
$scope.$evalAsync(() => {
this.onChange(value);
});
};
}