File tree Expand file tree Collapse file tree 1 file changed +0
-17
lines changed
packages/notebook-extension/src Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -563,22 +563,6 @@ const editNotebookMetadata: JupyterFrontEndPlugin<void> = {
563
563
} ,
564
564
} ;
565
565
566
- /**
567
- * A plugin to set the default windowing mode to defer for the notebook
568
- * TODO: remove?
569
- */
570
- const windowing : JupyterFrontEndPlugin < void > = {
571
- id : '@jupyter-notebook/notebook-extension:windowing' ,
572
- autoStart : true ,
573
- requires : [ INotebookTracker ] ,
574
- activate : ( app : JupyterFrontEnd , notebookTracker : INotebookTracker ) : void => {
575
- notebookTracker . widgetAdded . connect ( ( sender , widget ) => {
576
- widget . content [ '_viewModel' ] . windowingActive = false ;
577
- widget . content . notebookConfig . windowingMode = 'defer' ;
578
- } ) ;
579
- } ,
580
- } ;
581
-
582
566
/**
583
567
* Export the plugins as default.
584
568
*/
@@ -592,7 +576,6 @@ const plugins: JupyterFrontEndPlugin<any>[] = [
592
576
scrollOutput ,
593
577
tabIcon ,
594
578
trusted ,
595
- windowing ,
596
579
] ;
597
580
598
581
export default plugins ;
You can’t perform that action at this time.
0 commit comments