Skip to content

Commit 354e51a

Browse files
committed
bugfix contenteditable auto save
1 parent c5ee475 commit 354e51a

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

frontend/src/app/agent/train/train.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h2 fxFlex="90">Train your intent</h2>
2828
</mat-expansion-panel-header>
2929

3030
<div fxLayout="row">
31-
<div fxFlex="90" id="textarea_highlight" contenteditable="true" role="textarea" (mouseup)="annotate()" appAutofocus (blur)="example.text = $event.target.outerText;">{{example.text}}</div>
31+
<div fxFlex="90" id="textarea_highlight" contenteditable="true" role="textarea" (mouseup)="annotate()" appAutofocus (keyup)="example.text = $event.target.outerText;placeCaretAtEnd($event.target)">{{example.text}}</div>
3232
<button mat-icon-button fxFlex="10">
3333
<mat-icon aria-label="Delete this example" (click)="deleteExample(example_index)">delete</mat-icon>
3434
</button>

frontend/src/app/agent/train/train.component.ts

+20
Original file line numberDiff line numberDiff line change
@@ -203,4 +203,24 @@ export class TrainComponent implements OnInit {
203203
}
204204
}
205205
}
206+
207+
//place curser at the end of content editable div
208+
placeCaretAtEnd(el) {
209+
el.focus();
210+
if (typeof window.getSelection != "undefined"
211+
&& typeof document.createRange != "undefined") {
212+
var range = document.createRange();
213+
range.selectNodeContents(el);
214+
range.collapse(false);
215+
var sel = window.getSelection();
216+
sel.removeAllRanges();
217+
sel.addRange(range);
218+
} else if (typeof document.body.createTextRange != "undefined") {
219+
var textRange = document.body.createTextRange();
220+
textRange.moveToElementText(el);
221+
textRange.collapse(false);
222+
textRange.select();
223+
}
224+
}
225+
206226
}

0 commit comments

Comments
 (0)