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);