From 594da8034bc2ec137cd4db86de678a7141b46c80 2013-01-14 07:40:57 From: Matthias BUSSONNIER Date: 2013-01-14 07:40:57 Subject: [PATCH] remove useless jquery selector --- diff --git a/IPython/frontend/html/notebook/static/js/examples/celltoolbar.example.js b/IPython/frontend/html/notebook/static/js/examples/celltoolbar.example.js index 21495e4..ed4ca1c 100644 --- a/IPython/frontend/html/notebook/static/js/examples/celltoolbar.example.js +++ b/IPython/frontend/html/notebook/static/js/examples/celltoolbar.example.js @@ -85,7 +85,7 @@ } var add_raw_edit_button = function(div, cell) { - var button_container = $(div) + var button_container = div var button = $('
').button({label:'Raw Edit'}) .click(function(){raw_edit(cell); return false;}) button_container.append(button);