File tree Expand file tree Collapse file tree 5 files changed +704
-585
lines changed Expand file tree Collapse file tree 5 files changed +704
-585
lines changed Original file line number Diff line number Diff line change @@ -126,3 +126,6 @@ ui-tests/playwright-report
126
126
127
127
# VSCode
128
128
.vscode
129
+
130
+ # RTC
131
+ .jupyter_ystore.db
Original file line number Diff line number Diff line change 119
119
"@jupyterlab/cell-toolbar-extension" : " ^4.0.0-alpha.15" ,
120
120
"@jupyterlab/celltags" : " ^4.0.0-alpha.15" ,
121
121
"@jupyterlab/celltags-extension" : " ^4.0.0-alpha.15" ,
122
+ "@jupyterlab/codemirror" : " ^4.0.0-alpha.15" ,
122
123
"@jupyterlab/codemirror-extension" : " ^4.0.0-alpha.15" ,
123
124
"@jupyterlab/collaboration-extension" : " ^4.0.0-alpha.15" ,
124
125
"@jupyterlab/completer-extension" : " ^4.0.0-alpha.15" ,
215
216
" @jupyterlab/cell-toolbar" ,
216
217
" @jupyterlab/celltags" ,
217
218
" @jupyterlab/codeeditor" ,
219
+ " @jupyterlab/codemirror" ,
218
220
" @jupyterlab/collaboration" ,
219
221
" @jupyterlab/completer" ,
220
222
" @jupyterlab/console" ,
Original file line number Diff line number Diff line change 45
45
"@jupyterlab/apputils" : " ^4.0.0-alpha.15" ,
46
46
"@jupyterlab/celltags" : " ^4.0.0-alpha.15" ,
47
47
"@jupyterlab/codeeditor" : " ^4.0.0-alpha.15" ,
48
- "@jupyterlab/codemirror" : " ^4.0.0-alpha.15" ,
49
48
"@jupyterlab/console" : " ^4.0.0-alpha.15" ,
50
49
"@jupyterlab/coreutils" : " ^6.0.0-alpha.15" ,
51
50
"@jupyterlab/docmanager" : " ^4.0.0-alpha.15" ,
Original file line number Diff line number Diff line change @@ -46,6 +46,8 @@ const opener: JupyterFrontEndPlugin<IDocumentWidgetOpener> = {
46
46
url = `${ url } ?factory=${ widgetName } ` ;
47
47
}
48
48
window . open ( url ) ;
49
+ // dispose the widget since it is not used on this page
50
+ widget . dispose ( ) ;
49
51
return ;
50
52
}
51
53
You can’t perform that action at this time.
0 commit comments