mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-27 04:20:22 +08:00
Removing unneeded ui-widget class.
This commit is contained in:
parent
fc7a20a8e1
commit
4c5cbb71ea
@ -121,7 +121,7 @@ var IPython = (function (IPython) {
|
||||
this.element
|
||||
.append($('<select/>')
|
||||
.attr('id','cell_type')
|
||||
.addClass('ui-widget ui-widget-content')
|
||||
.addClass('ui-widget-content')
|
||||
.append($('<option/>').attr('value','code').text('Code'))
|
||||
.append($('<option/>').attr('value','markdown').text('Markdown'))
|
||||
.append($('<option/>').attr('value','raw').text('Raw Text'))
|
||||
@ -138,7 +138,7 @@ var IPython = (function (IPython) {
|
||||
MainToolBar.prototype.add_celltoolbar_list = function () {
|
||||
var label = $('<label/>').text('Cell Toolbar:');
|
||||
var select = $('<select/>')
|
||||
.addClass('ui-widget ui-widget-content')
|
||||
.addClass('ui-widget-content')
|
||||
.attr('id', 'ctb_select')
|
||||
.append($('<option/>').attr('value', '').text('None'));
|
||||
this.element.append(label).append(select);
|
||||
|
Loading…
Reference in New Issue
Block a user