Show More
@@ -317,7 +317,9 b' var IPython = (function (IPython) {' | |||||
317 | that.undelete(); |
|
317 | that.undelete(); | |
318 | that.control_key_active = false; |
|
318 | that.control_key_active = false; | |
319 | return false; |
|
319 | return false; | |
320 |
} else if (event.which === 189 |
|
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 | // Split cell = - |
|
323 | // Split cell = - | |
322 | that.split_cell(); |
|
324 | that.split_cell(); | |
323 | that.control_key_active = false; |
|
325 | that.control_key_active = false; |
General Comments 0
You need to be logged in to leave comments.
Login now