We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0112703 + d537ef6 commit 5585feaCopy full SHA for 5585fea
notebook/static/notebook/js/quickhelp.js
@@ -286,8 +286,11 @@ define([
286
// close this dialog
287
$(that.shortcut_dialog).modal("toggle");
288
// and open the next one
289
- that.keyboard_manager.actions.call(
290
- 'jupyter-notebook:edit-command-mode-keyboard-shortcuts');
+ $(that.shortcut_dialog).on('hidden.bs.modal', function (e) {
+ that.keyboard_manager.actions.call(
291
+ 'jupyter-notebook:edit-command-mode-keyboard-shortcuts'
292
+ );
293
+ });
294
});
295
div.find('h4').append(edit_button);
296
return div;
0 commit comments