c439bc56ff
* fix(edge): add ngInject * feat(edge): init edge job model
11 lines
214 B
JavaScript
11 lines
214 B
JavaScript
export class EditEdgeStackFormController {
|
|
/* @ngInject */
|
|
constructor() {
|
|
this.editorUpdate = this.editorUpdate.bind(this);
|
|
}
|
|
|
|
editorUpdate(cm) {
|
|
this.model.StackFileContent = cm.getValue();
|
|
}
|
|
}
|