File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -173,13 +173,13 @@ abstract class TagsInputBaseView extends DOMWidgetView {
173
173
} ;
174
174
} ) ( index , value [ index ] ) ;
175
175
tag . ondrop = ( ( index : number ) => {
176
- return ( event : DragEvent ) => {
176
+ return ( event : DragEvent ) : void => {
177
177
this . ondrop ( event , index ) ;
178
178
} ;
179
179
} ) ( index ) ;
180
180
tag . ondragover = this . ondragover . bind ( this ) ;
181
181
tag . ondragenter = ( ( index : number ) => {
182
- return ( event : DragEvent ) => {
182
+ return ( event : DragEvent ) : void => {
183
183
this . ondragenter ( event , index ) ;
184
184
} ;
185
185
} ) ( index ) ;
@@ -617,7 +617,7 @@ export class TagsInputView extends TagsInputBaseView {
617
617
tag . appendChild ( i ) ;
618
618
619
619
i . onmousedown = ( ( index : number ) => {
620
- return ( ) => {
620
+ return ( ) : void => {
621
621
this . removeTag ( index ) ;
622
622
this . loseFocus ( ) ;
623
623
} ;
@@ -700,7 +700,7 @@ export class ColorsInputView extends TagsInputBaseView {
700
700
tag . appendChild ( i ) ;
701
701
702
702
i . onmousedown = ( ( index : number ) => {
703
- return ( ) => {
703
+ return ( ) : void => {
704
704
this . removeTag ( index ) ;
705
705
this . loseFocus ( ) ;
706
706
} ;
You can’t perform that action at this time.
0 commit comments