diff --git a/IPython/html/static/notebook/js/widgets/bool.js b/IPython/html/static/notebook/js/widgets/bool.js index af5a2b5..104ec7c 100644 --- a/IPython/html/static/notebook/js/widgets/bool.js +++ b/IPython/html/static/notebook/js/widgets/bool.js @@ -10,7 +10,6 @@ require(["notebook/js/widget"], function(){ render : function(){ this.$el .html('') - .addClass('widget_item') .addClass(this.model.comm.comm_id); var $label = $('') @@ -20,7 +19,6 @@ require(["notebook/js/widget"], function(){ .attr('type', 'checkbox') .appendTo($label); this.$checkbox_label = $('
') - .addClass('widget_item') .appendTo($label); this.update(); // Set defaults. diff --git a/IPython/html/static/notebook/js/widgets/float_range.js b/IPython/html/static/notebook/js/widgets/float_range.js index 1a52020..479b579 100644 --- a/IPython/html/static/notebook/js/widgets/float_range.js +++ b/IPython/html/static/notebook/js/widgets/float_range.js @@ -54,7 +54,6 @@ require(["notebook/js/widget"], function(){ render : function(){ this.$el .html('') - .addClass('widget_item') .addClass(this.model.comm.comm_id); this.$textbox = $('') .addClass('input') diff --git a/IPython/html/static/notebook/js/widgets/int_range.js b/IPython/html/static/notebook/js/widgets/int_range.js index 8c270f0..a312964 100644 --- a/IPython/html/static/notebook/js/widgets/int_range.js +++ b/IPython/html/static/notebook/js/widgets/int_range.js @@ -53,7 +53,6 @@ require(["notebook/js/widget"], function(){ render : function(){ this.$el .html('') - .addClass('widget_item') .addClass(this.model.comm.comm_id); this.$textbox = $('') .addClass('input') diff --git a/IPython/html/static/notebook/js/widgets/selection.js b/IPython/html/static/notebook/js/widgets/selection.js index 23d80ed..f151661 100644 --- a/IPython/html/static/notebook/js/widgets/selection.js +++ b/IPython/html/static/notebook/js/widgets/selection.js @@ -9,7 +9,6 @@ require(["notebook/js/widget"], function(){ this.$el .html('') - .addClass('widget_item') .addClass(this.model.comm.comm_id); this.$buttongroup = $('') .addClass('widget_item') @@ -74,7 +73,6 @@ require(["notebook/js/widget"], function(){ render : function(){ this.$el .html('') - .addClass('widget_item') .addClass(this.model.comm.comm_id); this.update(); }, @@ -140,10 +138,8 @@ require(["notebook/js/widget"], function(){ render : function(){ this.$el .html('') - .addClass('widget_item') .addClass(this.model.comm.comm_id); this.$buttongroup = $('') - .addClass('widget_item') .addClass('btn-group') .attr('data-toggle', 'buttons-radio') .appendTo(this.$el); diff --git a/IPython/html/static/notebook/js/widgets/string.js b/IPython/html/static/notebook/js/widgets/string.js index a8cc4c4..fc87878 100644 --- a/IPython/html/static/notebook/js/widgets/string.js +++ b/IPython/html/static/notebook/js/widgets/string.js @@ -7,7 +7,6 @@ require(["notebook/js/widget"], function(){ // Called when view is rendered. render : function(){ this.$el = $('') - .addClass('widget_item') .addClass(this.model.comm.comm_id); this.update(); // Set defaults. }, @@ -28,7 +27,6 @@ require(["notebook/js/widget"], function(){ render : function(){ this.$el .html('') - .addClass('widget_item') .addClass(this.model.comm.comm_id); this.$textbox = $('') .attr('rows', 5) @@ -65,7 +63,6 @@ require(["notebook/js/widget"], function(){ render : function(){ this.$el .html('') - .addClass('widget_item') .addClass(this.model.comm.comm_id); this.$textbox = $('') .addClass('input')