Show More
@@ -224,7 +224,7 b' var IPython = (function (IPython) {' | |||||
224 | morelink.append(morespan); |
|
224 | morelink.append(morespan); | |
225 | morelink.click(function(){ |
|
225 | morelink.click(function(){ | |
226 | var msg_id = IPython.notebook.kernel.execute(name+"?"); |
|
226 | var msg_id = IPython.notebook.kernel.execute(name+"?"); | |
227 | IPython.notebook.msg_cell_map[msg_id] = IPython.notebook.selected_cell().cell_id; |
|
227 | IPython.notebook.msg_cell_map[msg_id] = IPython.notebook.get_selected_cell().cell_id; | |
228 | that.remove_and_cancel_tooltip(); |
|
228 | that.remove_and_cancel_tooltip(); | |
229 | setTimeout(function(){that.code_mirror.focus();}, 50); |
|
229 | setTimeout(function(){that.code_mirror.focus();}, 50); | |
230 | }); |
|
230 | }); |
@@ -1014,7 +1014,7 b' var IPython = (function (IPython) {' | |||||
1014 | var ncells = this.ncells(); |
|
1014 | var ncells = this.ncells(); | |
1015 | for (var i=0; i<ncells; i++) { |
|
1015 | for (var i=0; i<ncells; i++) { | |
1016 | this.select(i); |
|
1016 | this.select(i); | |
1017 |
this.execute_ |
|
1017 | this.execute_selected_cell({add_new:false}); | |
1018 | }; |
|
1018 | }; | |
1019 | this.scroll_to_bottom(); |
|
1019 | this.scroll_to_bottom(); | |
1020 | }; |
|
1020 | }; |
General Comments 0
You need to be logged in to leave comments.
Login now