Show More
@@ -109,7 +109,7 var IPython = (function (IPython) { | |||
|
109 | 109 | CodeCell.prototype.create_element = function () { |
|
110 | 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 | 113 | cell.attr('tabindex','2'); |
|
114 | 114 | |
|
115 | 115 | this.celltoolbar = new IPython.CellToolbar(this); |
@@ -67,7 +67,7 var IPython = (function (IPython) { | |||
|
67 | 67 | */ |
|
68 | 68 | TextCell.prototype.create_element = function () { |
|
69 | 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 | 71 | cell.attr('tabindex','2'); |
|
72 | 72 | |
|
73 | 73 | this.celltoolbar = new IPython.CellToolbar(this); |
General Comments 0
You need to be logged in to leave comments.
Login now