mirror of
https://github.com/portainer/portainer.git
synced 2025-07-20 13:59:40 +02:00
10 lines
214 B
JavaScript
10 lines
214 B
JavaScript
export class EditEdgeStackFormController {
|
|
/* @ngInject */
|
|
constructor() {
|
|
this.editorUpdate = this.editorUpdate.bind(this);
|
|
}
|
|
|
|
editorUpdate(cm) {
|
|
this.model.StackFileContent = cm.getValue();
|
|
}
|
|
}
|