diff --git a/IPython/html/static/notebook/js/quickhelp.js b/IPython/html/static/notebook/js/quickhelp.js index 08b01d5..76c4ae4 100644 --- a/IPython/html/static/notebook/js/quickhelp.js +++ b/IPython/html/static/notebook/js/quickhelp.js @@ -135,7 +135,7 @@ var IPython = (function (IPython) { QuickHelp.prototype.build_edit_help = function (cm_shortcuts) { var edit_shortcuts = IPython.keyboard_manager.edit_shortcuts.help(); - jQuery.extend(cm_shortcuts, edit_shortcuts); + jQuery.merge(cm_shortcuts, edit_shortcuts); return build_div('

Edit Mode (press Enter to enable)

', cm_shortcuts); };