@@ -39,9 +39,9 @@ export class BlocklyLayout extends PanelLayout {
3939 // and the output area to render the execution replies.
4040 this . _host = document . createElement ( 'div' ) ;
4141
42- // Creating a SimplifiedOutputArea widget to render the
42+ // Creating a SimplifiedOutputArea widget to render the
4343 // outputs from the execution reply.
44- this . _outputArea = new SimplifiedOutputArea ( {
44+ this . _outputArea = new SimplifiedOutputArea ( {
4545 model : new OutputAreaModel ( { trusted : true } ) ,
4646 rendermime
4747 } ) ;
@@ -99,11 +99,11 @@ export class BlocklyLayout extends PanelLayout {
9999 // Execute the code using the kernel, by using a static method from the
100100 // same class to make an execution request.
101101 SimplifiedOutputArea . execute ( code , this . _outputArea , this . _sessionContext )
102- . then ( resp => {
103- this . addWidget ( this . _outputArea ) ;
104- this . _resizeWorkspace ( ) ;
105- } )
106- . catch ( e => console . error ( e ) ) ;
102+ . then ( resp => {
103+ this . addWidget ( this . _outputArea ) ;
104+ this . _resizeWorkspace ( ) ;
105+ } )
106+ . catch ( e => console . error ( e ) ) ;
107107 }
108108
109109 /**
@@ -130,7 +130,7 @@ export class BlocklyLayout extends PanelLayout {
130130 /**
131131 * Handle `after-attach` messages sent to the widget.
132132 */
133- protected onAfterAttach ( msg : Message ) : void {
133+ protected onAfterAttach ( msg : Message ) : void {
134134 //inject Blockly with appropiate JupyterLab theme.
135135 this . _workspace = Blockly . inject ( this . _host , {
136136 toolbox : this . _manager . toolbox ,
0 commit comments