···4747 rendermime
4848 });
4949 // Trust the outputs and set the mimeType for the code
5050+ this._cell.addClass('jp-blockly-codeCell');
5051 this._cell.readOnly = true;
5152 this._cell.model.trusted = true;
5253 this._cell.model.mimeType = this._manager.mimeType;
5454+ // adding the style to the element as a quick fix
5555+ // we should make it work with the css class
5656+ this._cell.node.style.overflow = 'scroll';
53575458 this._manager.changed.connect(this._onManagerChanged, this);
5559 }