diff --git a/IPython/html/static/widgets/js/widget_selection.js b/IPython/html/static/widgets/js/widget_selection.js index 31bd3df..f00e799 100644 --- a/IPython/html/static/widgets/js/widget_selection.js +++ b/IPython/html/static/widgets/js/widget_selection.js @@ -287,7 +287,6 @@ define([ .hide(); this.$buttongroup = $('
') .addClass('btn-group') - .attr('data-toggle', 'buttons-radio') .appendTo(this.$el); this.model.on('change:button_style', function(model, value) { diff --git a/IPython/html/tests/widgets/widget_selection.js b/IPython/html/tests/widgets/widget_selection.js index 68d2c6a..94b433c 100644 --- a/IPython/html/tests/widgets/widget_selection.js +++ b/IPython/html/tests/widgets/widget_selection.js @@ -7,7 +7,7 @@ casper.notebook_test(function () { this.execute_cell_then(index); var combo_selector = '.widget-area .widget-subarea .widget-hbox .btn-group .widget-combo-btn'; - var multibtn_selector = '.widget-area .widget-subarea .widget-hbox .btn-group[data-toggle="buttons-radio"]'; + var multibtn_selector = '.widget-area .widget-subarea .widget-hbox.widget-toggle-buttons .btn-group'; var radio_selector = '.widget-area .widget-subarea .widget-hbox .widget-radio-box'; var list_selector = '.widget-area .widget-subarea .widget-hbox .widget-listbox';