##// END OF EJS Templates
added on-hover descriptions of the new menu items
Paul Ivanov -
Show More
@@ -128,13 +128,13 var IPython = (function (IPython) {
128 128 });
129 129 this.element.find('#run_all_cells').click(function () {
130 130 IPython.notebook.execute_all_cells();
131 });
131 }).attr('title', 'Run all cells in the notebook');
132 132 this.element.find('#run_all_cells_above').click(function () {
133 133 IPython.notebook.execute_cells_above();
134 });
134 }).attr('title', 'Run all cells above (but not including) this cell');
135 135 this.element.find('#run_all_cells_below').click(function () {
136 136 IPython.notebook.execute_cells_below();
137 });
137 }).attr('title', 'Run this cell and all cells below it');
138 138 this.element.find('#to_code').click(function () {
139 139 IPython.notebook.to_code();
140 140 });
General Comments 0
You need to be logged in to leave comments. Login now