diff --git a/IPython/html/static/notebook/js/menubar.js b/IPython/html/static/notebook/js/menubar.js index e531eef..5d05b34 100644 --- a/IPython/html/static/notebook/js/menubar.js +++ b/IPython/html/static/notebook/js/menubar.js @@ -267,13 +267,6 @@ var IPython = (function (IPython) { this.element.find('#clear_all_output').click(function () { IPython.notebook.clear_all_output(); }); - // Kernel - this.element.find('#int_kernel').click(function () { - IPython.notebook.session.interrupt_kernel(); - }); - this.element.find('#restart_kernel').click(function () { - IPython.notebook.restart_kernel(); - }); // Help this.element.find('#keyboard_shortcuts').click(function () { IPython.quick_help.show_keyboard_shortcuts(); diff --git a/IPython/html/templates/notebook.html b/IPython/html/templates/notebook.html index 7d05482..5a1821a 100644 --- a/IPython/html/templates/notebook.html +++ b/IPython/html/templates/notebook.html @@ -188,16 +188,6 @@ class="notebook_app" -