Removing unneeded ui-widget class.

This commit is contained in:
Brian Granger 2013-01-18 10:41:04 -08:00
parent fc7a20a8e1
commit 4c5cbb71ea

View File

@ -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);