From b8d3d2c6af650f7fce955566baa8988e3c89393a Mon Sep 17 00:00:00 2001 From: "Jessica B. Hamrick" Date: Sun, 7 Sep 2014 13:08:18 -0700 Subject: [PATCH] Register input with keyboard manager, fixes #6426 --- IPython/html/static/notebook/js/celltoolbar.js | 1 + 1 file changed, 1 insertion(+) diff --git a/IPython/html/static/notebook/js/celltoolbar.js b/IPython/html/static/notebook/js/celltoolbar.js index 0cb6a76b9..887eba36e 100644 --- a/IPython/html/static/notebook/js/celltoolbar.js +++ b/IPython/html/static/notebook/js/celltoolbar.js @@ -376,6 +376,7 @@ define([ setter(cell, text.val()); }); button_container.append($('').append(lbl)); + IPython.keyboard_manager.register_events(text); }; };