From ed6fa478f0cf5b41338f5286653573c42fa201bb Mon Sep 17 00:00:00 2001 From: Min RK Date: Tue, 13 Jan 2015 13:49:00 -0800 Subject: [PATCH] disable keyboard events on main toolbar closes #5829 --- IPython/html/static/notebook/js/maintoolbar.js | 1 + 1 file changed, 1 insertion(+) diff --git a/IPython/html/static/notebook/js/maintoolbar.js b/IPython/html/static/notebook/js/maintoolbar.js index 0d4ae3e2f..9ecc146bc 100644 --- a/IPython/html/static/notebook/js/maintoolbar.js +++ b/IPython/html/static/notebook/js/maintoolbar.js @@ -25,6 +25,7 @@ define([ this.events = options.events; this.notebook = options.notebook; this._make(); + this.notebook.keyboard_manager.register_events(this.element); Object.seal(this); };