##// END OF EJS Templates
Merge pull request #4379 from ivanov/split-shortcut-ff...
Min RK -
r12964:d1bf9a5d merge
parent child Browse files
Show More
@@ -317,7 +317,9 b' var IPython = (function (IPython) {'
317 317 that.undelete();
318 318 that.control_key_active = false;
319 319 return false;
320 } else if (event.which === 189 && that.control_key_active) {
320 } else if ((event.which === 189 || event.which === 173) &&
321 that.control_key_active) {
322 // how fun! '-' is 189 in Chrome, but 173 in FF and Opera
321 323 // Split cell = -
322 324 that.split_cell();
323 325 that.control_key_active = false;
General Comments 0
You need to be logged in to leave comments. Login now