Merge pull request #5061 from minrk/execute-button

make execute button in menu bar match shift-enter
This commit is contained in:
Brian E. Granger 2014-02-08 10:03:24 -08:00
commit 9b21f618e6

View File

@ -100,8 +100,9 @@ var IPython = (function (IPython) {
label : 'Run Cell',
icon : 'icon-play',
callback : function () {
IPython.notebook.execute_cell();
}
// emulate default shift-enter behavior
IPython.notebook.execute_cell_and_select_below();
}
},
{
id : 'interrupt_b',