From 2478e2faee814742b3ac0d49ea1654b5969416e2 2014-07-22 12:44:19 From: Matthias Bussonnier Date: 2014-07-22 12:44:19 Subject: [PATCH] Merge pull request #6160 from parleur/patch-2 Span in CellToolBar instead of div --- diff --git a/IPython/html/static/notebook/js/celltoolbar.js b/IPython/html/static/notebook/js/celltoolbar.js index 50c6bd9..05a9cfc 100644 --- a/IPython/html/static/notebook/js/celltoolbar.js +++ b/IPython/html/static/notebook/js/celltoolbar.js @@ -342,7 +342,7 @@ define([ setter(cell, !v); chkb.attr("checked", !v); }); - button_container.append($('
').append(lbl)); + button_container.append($('').append(lbl)); }; }; @@ -406,7 +406,7 @@ define([ select.change(function(){ setter(cell, select.val()); }); - button_container.append($('
').append(lbl).append(select)); + button_container.append($('').append(lbl).append(select)); }; };