From 8b7db8d6da6642f921886fa962f46fa809c0de8a Mon Sep 17 00:00:00 2001 From: Matthias BUSSONNIER Date: Sat, 12 Jan 2013 13:03:19 +0100 Subject: [PATCH] remove useless jquery selector --- .../html/notebook/static/js/examples/celltoolbar.example.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 21495e46d..ed4ca1c9c 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);