File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -86,14 +86,14 @@ export class TextInputAutocompleteDirective implements OnDestroy {
86
86
) { }
87
87
88
88
@HostListener ( 'keypress' , [ '$event.key' ] )
89
- private onKeypress ( key : string ) {
89
+ onKeypress ( key : string ) {
90
90
if ( key === this . triggerCharacter ) {
91
91
this . showMenu ( ) ;
92
92
}
93
93
}
94
94
95
95
@HostListener ( 'input' , [ '$event.target.value' ] )
96
- private onChange ( value : string ) {
96
+ onChange ( value : string ) {
97
97
if ( this . menu ) {
98
98
if ( value [ this . menu . triggerCharacterPosition ] !== this . triggerCharacter ) {
99
99
this . hideMenu ( ) ;
@@ -136,7 +136,7 @@ export class TextInputAutocompleteDirective implements OnDestroy {
136
136
}
137
137
138
138
@HostListener ( 'blur' )
139
- private onBlur ( ) {
139
+ onBlur ( ) {
140
140
if ( this . menu ) {
141
141
this . menu . lastCaretPosition = this . elm . nativeElement . selectionStart ;
142
142
}
You can’t perform that action at this time.
0 commit comments