File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
web_src/js/modules/fomantic Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -79,13 +79,13 @@ function delegateOne($dropdown: any) {
7979 dropdownCall ( 'internal' , 'blurSearch' , function ( ) { oldBlurSearch . call ( this ) ; dropdownCall ( 'hide' ) } ) ;
8080
8181 const oldFilterItems = dropdownCall ( 'internal' , 'filterItems' ) ;
82- dropdownCall ( 'internal' , 'filterItems' , function ( ) {
83- oldFilterItems . call ( this ) ;
82+ dropdownCall ( 'internal' , 'filterItems' , function ( ... args : any [ ] ) {
83+ oldFilterItems . call ( this , ... args ) ;
8484 processMenuItems ( $dropdown , dropdownCall ) ;
8585 } ) ;
8686
8787 const oldShow = dropdownCall ( 'internal' , 'show' ) ;
88- dropdownCall ( 'internal' , 'show' , function ( ...args ) {
88+ dropdownCall ( 'internal' , 'show' , function ( ...args : any [ ] ) {
8989 oldShow . call ( this , ...args ) ;
9090 processMenuItems ( $dropdown , dropdownCall ) ;
9191 } ) ;
You can’t perform that action at this time.
0 commit comments