Show More
@@ -109,7 +109,7 b' var IPython = (function (IPython) {' | |||||
109 | CodeCell.prototype.create_element = function () { |
|
109 | CodeCell.prototype.create_element = function () { | |
110 | IPython.Cell.prototype.create_element.apply(this, arguments); |
|
110 | IPython.Cell.prototype.create_element.apply(this, arguments); | |
111 |
|
111 | |||
112 |
var cell = $('<div></div>').addClass('cell border-box-sizing code_cell |
|
112 | var cell = $('<div></div>').addClass('cell border-box-sizing code_cell'); | |
113 | cell.attr('tabindex','2'); |
|
113 | cell.attr('tabindex','2'); | |
114 |
|
114 | |||
115 | this.celltoolbar = new IPython.CellToolbar(this); |
|
115 | this.celltoolbar = new IPython.CellToolbar(this); |
@@ -67,7 +67,7 b' var IPython = (function (IPython) {' | |||||
67 | */ |
|
67 | */ | |
68 | TextCell.prototype.create_element = function () { |
|
68 | TextCell.prototype.create_element = function () { | |
69 | IPython.Cell.prototype.create_element.apply(this, arguments); |
|
69 | IPython.Cell.prototype.create_element.apply(this, arguments); | |
70 |
var cell = $("<div>").addClass('cell text_cell border-box-sizing |
|
70 | var cell = $("<div>").addClass('cell text_cell border-box-sizing'); | |
71 | cell.attr('tabindex','2'); |
|
71 | cell.attr('tabindex','2'); | |
72 |
|
72 | |||
73 | this.celltoolbar = new IPython.CellToolbar(this); |
|
73 | this.celltoolbar = new IPython.CellToolbar(this); |
General Comments 0
You need to be logged in to leave comments.
Login now