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 ca7db9b commit 1406d49Copy full SHA for 1406d49
webclient/src/main/web/src/app/document/document.component.ts
@@ -19,6 +19,12 @@ export class DocumentComponent implements OnInit {
19
selectionStart: number;
20
selectionEnd: number;
21
22
+ @ViewChild("textArea")
23
+ set setTextArea(value: ElementRef) {
24
+ this.textArea = value;
25
+ }
26
+
27
28
constructor(
29
private documentService: DocumentService,
30
) {
@@ -87,12 +93,6 @@ export class DocumentComponent implements OnInit {
87
93
return this.newName.length === 0;
88
94
}
89
95
90
- @ViewChild("textArea")
91
- set setTextArea(value: ElementRef) {
92
- this.textArea = value;
- }
-
96
textChanged(event, document: Document) {
97
98
let update: Update;
0 commit comments