From b117f59b82e647d91c98d34ab9ab43730dbadbbd Mon Sep 17 00:00:00 2001 From: Paul Ivanov Date: Mon, 21 Oct 2013 22:34:08 -0700 Subject: [PATCH] javascript is no place to start adding title tags --- IPython/html/static/notebook/js/menubar.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/IPython/html/static/notebook/js/menubar.js b/IPython/html/static/notebook/js/menubar.js index fee79d6bf..ba9e308f9 100644 --- a/IPython/html/static/notebook/js/menubar.js +++ b/IPython/html/static/notebook/js/menubar.js @@ -165,13 +165,13 @@ var IPython = (function (IPython) { }); this.element.find('#run_all_cells').click(function () { IPython.notebook.execute_all_cells(); - }).attr('title', 'Run all cells in the notebook'); + }); this.element.find('#run_all_cells_above').click(function () { IPython.notebook.execute_cells_above(); - }).attr('title', 'Run all cells above (but not including) this cell'); + }); this.element.find('#run_all_cells_below').click(function () { IPython.notebook.execute_cells_below(); - }).attr('title', 'Run this cell and all cells below it'); + }); this.element.find('#to_code').click(function () { IPython.notebook.to_code(); });