Remove experiment code
continuous-integration/drone/push Build was killed Details
continuous-integration/drone Build is passing Details

master
Garrett Mills 3 years ago
parent 5888af4331
commit 2284c84897
Signed by: garrettmills
GPG Key ID: D2BF5FBA8298F246

@ -1,41 +0,0 @@
import {EditorNodeContract} from '../EditorNode.contract';
import {Component, Input, OnInit} from '@angular/core';
import {EditorService} from '../../../service/editor.service';
@Component({
selector: 'editor-richtext',
template: `
<sla-text></sla-text>
<sla-editable></sla-editable>
<sla-ng></sla-ng>
`,
})
export class RichTextNodeComponent extends EditorNodeContract implements OnInit {
@Input() nodeId: string;
@Input() editorUUID?: string;
constructor(
public editorService: EditorService,
) { super(); }
isDirty(): boolean | Promise<boolean> {
return false;
}
writeChangesToNode(): void | Promise<void> {
return undefined;
}
ngOnInit(): void {
this.editorService = this.editorService.getEditor(this.editorUUID);
this.editorService.registerNodeEditor(this.nodeId, this).then(() => {
if ( !this.node.Value ) {
this.node.Value = {};
}
if ( this.node.Value.Value ) {
this.initialValue = this.node.Value.Value;
}
});
}
}
Loading…
Cancel
Save