From 83b41e4c4b248b9a5ea895c4b853f163eb0e3e69 2013-02-05 08:49:54 From: Matthias BUSSONNIER Date: 2013-02-05 08:49:54 Subject: [PATCH] remove one useless element --- diff --git a/IPython/frontend/html/notebook/static/js/celltoolbar.js b/IPython/frontend/html/notebook/static/js/celltoolbar.js index 91166a6..79a83e7 100644 --- a/IPython/frontend/html/notebook/static/js/celltoolbar.js +++ b/IPython/frontend/html/notebook/static/js/celltoolbar.js @@ -34,11 +34,9 @@ var IPython = (function (IPython) { CellToolbar.prototype.create_element = function () { - this.inner_element = $('
'); - var ctb_element = $('
').addClass('celltoolbar hbox reverse') - .append(this.inner_element); + this.inner_element = $('
').addClass('celltoolbar hbox reverse') this.element = $('
').addClass('ctb_hideshow') - .append(ctb_element); + .append(this.inner_element); };