|
@@ -35,7 +35,7 @@ export
|
|
|
abstract class CellWidget extends Widget {
|
|
|
constructor() {
|
|
|
super();
|
|
|
- this.addClass('jp-CellWidget');
|
|
|
+ this.addClass('jp-Cell');
|
|
|
// we make the cell focusable by setting the tabIndex
|
|
|
this.node.tabIndex = -1;
|
|
|
this.layout = new PanelLayout();
|
|
@@ -57,7 +57,7 @@ class CodeCellWidget extends CellWidget {
|
|
|
*/
|
|
|
constructor(model: ICodeCellModel) {
|
|
|
super();
|
|
|
- this.addClass('jp-CodeCellWidget');
|
|
|
+ this.addClass('jp-CodeCell');
|
|
|
this._model = model;
|
|
|
this.input = new InputAreaWidget(model.input);
|
|
|
this.output = new OutputAreaWidget(model.output);
|
|
@@ -123,7 +123,7 @@ class MarkdownCellWidget extends CellWidget {
|
|
|
*/
|
|
|
constructor(model: IMarkdownCellModel) {
|
|
|
super();
|
|
|
- this.addClass('jp-MarkdownCellWidget');
|
|
|
+ this.addClass('jp-MarkdownCell');
|
|
|
|
|
|
this._model = model;
|
|
|
// Insist on the Github-flavored markdown mode
|