We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ab652f commit 8d33e0eCopy full SHA for 8d33e0e
src/app/app.component.ts
@@ -106,20 +106,6 @@ export class AppComponent {
106
this.paletteModelData = DataSyncService.syncModelData(changes, this.paletteModelData);
107
};
108
109
- public addNode = function() {
110
- const nd = { key: 'Test', color: 'yellow' };
111
- this.paletteNodeData.push(nd);
112
- };
113
-
114
- public addModelData = function() {
115
- this.paletteModelData.someNewProp = 'someNewVal';
116
117
118
- public changeSelectedNode = function() {
119
- const node = this.myDiagramComponent.diagram.nodes.first();
120
- this.selectedNode = node;
121
122
123
constructor(private cdr: ChangeDetectorRef) { }
124
125
// Overview Component testing
0 commit comments