Updating help string for ctrl-enter and alt-enter.

This commit is contained in:
Brian E. Granger 2013-12-12 16:20:20 -08:00
parent c841e006a3
commit 47534d2a28

View File

@ -109,14 +109,14 @@ var IPython = (function (IPython) {
}
},
'alt+enter' : {
help : 'run cell',
help : 'run cell, insert below',
handler : function (event) {
IPython.notebook.execute_selected_cell('alt');
return false;
}
},
'ctrl+enter' : {
help : 'run cell',
help : 'run cell, select below',
handler : function (event) {
IPython.notebook.execute_selected_cell('ctrl');
return false;