Show More
@@ -121,7 +121,7 b' var IPython = (function (IPython) {' | |||
|
121 | 121 | this.element |
|
122 | 122 | .append($('<select/>') |
|
123 | 123 | .attr('id','cell_type') |
|
124 |
.addClass('ui-widget |
|
|
124 | .addClass('ui-widget-content') | |
|
125 | 125 | .append($('<option/>').attr('value','code').text('Code')) |
|
126 | 126 | .append($('<option/>').attr('value','markdown').text('Markdown')) |
|
127 | 127 | .append($('<option/>').attr('value','raw').text('Raw Text')) |
@@ -138,7 +138,7 b' var IPython = (function (IPython) {' | |||
|
138 | 138 | MainToolBar.prototype.add_celltoolbar_list = function () { |
|
139 | 139 | var label = $('<label/>').text('Cell Toolbar:'); |
|
140 | 140 | var select = $('<select/>') |
|
141 |
.addClass('ui-widget |
|
|
141 | .addClass('ui-widget-content') | |
|
142 | 142 | .attr('id', 'ctb_select') |
|
143 | 143 | .append($('<option/>').attr('value', '').text('None')); |
|
144 | 144 | this.element.append(label).append(select); |
General Comments 0
You need to be logged in to leave comments.
Login now