File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5959 "devDependencies" : {
6060 "@babel/core" : " ^7.5.0" ,
6161 "@babel/preset-env" : " ^7.5.0" ,
62- "@jupyterlab/builder" : " ^3 .0.0 " ,
62+ "@jupyterlab/builder" : " ^4 .0.4 " ,
6363 "@phosphor/application" : " ^1.6.0" ,
6464 "@phosphor/widgets" : " ^1.6.0" ,
6565 "@types/bootstrap" : " ^5.1.11" ,
Original file line number Diff line number Diff line change @@ -759,8 +759,8 @@ export class ActiveHTMLView extends DOMWidgetView {
759759 if ( debug ) {
760760 console . log ( this . el , "Removing Event:" , prop ) ;
761761 }
762- this . el . removeEventListener ( prop , this . _currentEvents [ prop ] [ 1 ] ) ;
763- this . _currentEvents . delete ( prop ) ;
762+ this . el . removeEventListener ( prop , current [ prop ] [ 1 ] ) ;
763+ delete current [ prop ] ;
764764 }
765765 }
766766 }
@@ -815,7 +815,7 @@ export class ActiveHTMLView extends DOMWidgetView {
815815 console . log ( this . el , "Removing On Handler:" , prop ) ;
816816 }
817817 this . model . off ( prop , current [ prop ] [ 1 ] , this ) ;
818- current . delete ( prop ) ;
818+ delete current [ prop ] ;
819819 }
820820 }
821821 }
You can’t perform that action at this time.
0 commit comments