##// END OF EJS Templates
Removed widget_item class
Jonathan Frederic -
Show More
@@ -10,7 +10,6 b' require(["notebook/js/widget"], function(){'
10 10 render : function(){
11 11 this.$el
12 12 .html('')
13 .addClass('widget_item')
14 13 .addClass(this.model.comm.comm_id);
15 14
16 15 var $label = $('<label />')
@@ -20,7 +19,6 b' require(["notebook/js/widget"], function(){'
20 19 .attr('type', 'checkbox')
21 20 .appendTo($label);
22 21 this.$checkbox_label = $('<div />')
23 .addClass('widget_item')
24 22 .appendTo($label);
25 23
26 24 this.update(); // Set defaults.
@@ -54,7 +54,6 b' require(["notebook/js/widget"], function(){'
54 54 render : function(){
55 55 this.$el
56 56 .html('')
57 .addClass('widget_item')
58 57 .addClass(this.model.comm.comm_id);
59 58 this.$textbox = $('<input type="text" />')
60 59 .addClass('input')
@@ -53,7 +53,6 b' require(["notebook/js/widget"], function(){'
53 53 render : function(){
54 54 this.$el
55 55 .html('')
56 .addClass('widget_item')
57 56 .addClass(this.model.comm.comm_id);
58 57 this.$textbox = $('<input type="text" />')
59 58 .addClass('input')
@@ -9,7 +9,6 b' require(["notebook/js/widget"], function(){'
9 9
10 10 this.$el
11 11 .html('')
12 .addClass('widget_item')
13 12 .addClass(this.model.comm.comm_id);
14 13 this.$buttongroup = $('<div />')
15 14 .addClass('widget_item')
@@ -74,7 +73,6 b' require(["notebook/js/widget"], function(){'
74 73 render : function(){
75 74 this.$el
76 75 .html('')
77 .addClass('widget_item')
78 76 .addClass(this.model.comm.comm_id);
79 77 this.update();
80 78 },
@@ -140,10 +138,8 b' require(["notebook/js/widget"], function(){'
140 138 render : function(){
141 139 this.$el
142 140 .html('')
143 .addClass('widget_item')
144 141 .addClass(this.model.comm.comm_id);
145 142 this.$buttongroup = $('<div />')
146 .addClass('widget_item')
147 143 .addClass('btn-group')
148 144 .attr('data-toggle', 'buttons-radio')
149 145 .appendTo(this.$el);
@@ -7,7 +7,6 b' require(["notebook/js/widget"], function(){'
7 7 // Called when view is rendered.
8 8 render : function(){
9 9 this.$el = $('<div />')
10 .addClass('widget_item')
11 10 .addClass(this.model.comm.comm_id);
12 11 this.update(); // Set defaults.
13 12 },
@@ -28,7 +27,6 b' require(["notebook/js/widget"], function(){'
28 27 render : function(){
29 28 this.$el
30 29 .html('')
31 .addClass('widget_item')
32 30 .addClass(this.model.comm.comm_id);
33 31 this.$textbox = $('<textarea />')
34 32 .attr('rows', 5)
@@ -65,7 +63,6 b' require(["notebook/js/widget"], function(){'
65 63 render : function(){
66 64 this.$el
67 65 .html('')
68 .addClass('widget_item')
69 66 .addClass(this.model.comm.comm_id);
70 67 this.$textbox = $('<input type="text" />')
71 68 .addClass('input')
General Comments 0
You need to be logged in to leave comments. Login now