File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -59,8 +59,8 @@ new JupyterLab window which can be re-arranged as desired.
5959
6060### Arrange a new sidecar with respect to another sidecar
6161
62- The ` anchor ` parameter sets the position of the new sidecar relative to the
63- notebook that opens the sidecar, by default. To open a new sidecar whose ` anchor `
62+ The ` anchor ` parameter sets the position of the new sidecar relative to the
63+ notebook that opens the sidecar, by default. To open a new sidecar whose ` anchor `
6464is defined relative to another sidecar output, set the ` ref ` parameter with
6565the instance of the reference sidecar.
6666
Original file line number Diff line number Diff line change @@ -22,11 +22,11 @@ export class SidecarModel extends output.OutputModel {
2222 title : 'Sidecar' ,
2323 anchor : 'right' ,
2424 ref : null ,
25- _widget_id : null ,
26- }
25+ _widget_id : null
26+ } ;
2727 }
2828
29- get created ( ) : Promise < void > {
29+ get created ( ) : Promise < void > {
3030 return this . _viewCreated . promise ;
3131 }
3232
@@ -39,8 +39,8 @@ export class SidecarModel extends output.OutputModel {
3939 // deserialize the ref property
4040 static serializers = {
4141 ...DOMWidgetModel . serializers ,
42- ref : { deserialize : unpack_models as any } ,
43- }
42+ ref : { deserialize : unpack_models as any }
43+ } ;
4444
4545 initialize ( attributes : any , options : any ) {
4646 super . initialize ( attributes , options ) ;
You can’t perform that action at this time.
0 commit comments