##// END OF EJS Templates
javascript is no place to start adding title tags
Paul Ivanov -
Show More
@@ -165,13 +165,13 var IPython = (function (IPython) {
165 165 });
166 166 this.element.find('#run_all_cells').click(function () {
167 167 IPython.notebook.execute_all_cells();
168 }).attr('title', 'Run all cells in the notebook');
168 });
169 169 this.element.find('#run_all_cells_above').click(function () {
170 170 IPython.notebook.execute_cells_above();
171 }).attr('title', 'Run all cells above (but not including) this cell');
171 });
172 172 this.element.find('#run_all_cells_below').click(function () {
173 173 IPython.notebook.execute_cells_below();
174 }).attr('title', 'Run this cell and all cells below it');
174 });
175 175 this.element.find('#to_code').click(function () {
176 176 IPython.notebook.to_code();
177 177 });
General Comments 0
You need to be logged in to leave comments. Login now