##// END OF EJS Templates
Add kernel restart button to toolbar.
Brian E. Granger -
Show More
@@ -110,6 +110,14 b' var IPython = (function (IPython) {'
110 callback : function () {
110 callback : function () {
111 IPython.notebook.session.interrupt_kernel();
111 IPython.notebook.session.interrupt_kernel();
112 }
112 }
113 },
114 {
115 id : 'repeat_b',
116 label : 'Restart Kernel',
117 icon : 'icon-repeat',
118 callback : function () {
119 IPython.notebook.restart_kernel();
120 }
113 }
121 }
114 ],'run_int');
122 ],'run_int');
115 };
123 };
General Comments 0
You need to be logged in to leave comments. Login now