##// END OF EJS Templates
Prevent shift-enter from propagating and performing default.
Brian E. Granger -
Show More
@@ -58,6 +58,7 b' var IPython = (function (IPython) {'
58 };
58 };
59 } else if (event.which === 13 && event.shiftKey) {
59 } else if (event.which === 13 && event.shiftKey) {
60 that.execute_selected_cell(true);
60 that.execute_selected_cell(true);
61 return false;
61 };
62 };
62 });
63 });
63
64
General Comments 0
You need to be logged in to leave comments. Login now