mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-24 12:05:22 +08:00
Fix Gecko (Netscape) keyboard handling
This commit is contained in:
parent
05838b7c2e
commit
a08fbff5d9
@ -54,7 +54,7 @@ IPython.keyboard = (function (IPython) {
|
||||
var browser = IPython.utils.browser[0];
|
||||
var platform = IPython.utils.platform;
|
||||
|
||||
if (browser === 'Firefox' || browser === 'Opera') {
|
||||
if (browser === 'Firefox' || browser === 'Opera' || browser === 'Netscape') {
|
||||
$.extend(_keycodes, _mozilla_keycodes);
|
||||
} else if (browser === 'Safari' || browser === 'Chrome' || browser === 'MSIE') {
|
||||
$.extend(_keycodes, _ie_keycodes);
|
||||
|
Loading…
Reference in New Issue
Block a user