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