File tree 2 files changed +21
-1
lines changed
frontend/src/app/agent/train
2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ <h2 fxFlex="90">Train your intent</h2>
28
28
</ mat-expansion-panel-header >
29
29
30
30
< 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 >
32
32
< button mat-icon-button fxFlex ="10 ">
33
33
< mat-icon aria-label ="Delete this example " (click) ="deleteExample(example_index) "> delete</ mat-icon >
34
34
</ button >
Original file line number Diff line number Diff line change @@ -203,4 +203,24 @@ export class TrainComponent implements OnInit {
203
203
}
204
204
}
205
205
}
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
+
206
226
}
You can’t perform that action at this time.
0 commit comments