diff --git a/notebook/static/base/js/namespace.js b/notebook/static/base/js/namespace.js
index aab3d6972..ab356f695 100644
--- a/notebook/static/base/js/namespace.js
+++ b/notebook/static/base/js/namespace.js
@@ -64,6 +64,7 @@ define(function(){
jglobal('Toolbar','notebook/js/toolbar');
jglobal('SaveWidget','notebook/js/savewidget');
jglobal('Pager','notebook/js/pager');
+ jglobal('QuickHelp','notebook/js/quickhelp');
Jupyter.version = "4.0.0.dev";
Jupyter._target = '_blank';
diff --git a/notebook/static/notebook/js/quickhelp.js b/notebook/static/notebook/js/quickhelp.js
index 6158b1da1..8a46d66bd 100644
--- a/notebook/static/notebook/js/quickhelp.js
+++ b/notebook/static/notebook/js/quickhelp.js
@@ -2,11 +2,10 @@
// Distributed under the terms of the Modified BSD License.
define([
- 'base/js/namespace',
'jquery',
'base/js/utils',
'base/js/dialog',
-], function(IPython, $, utils, dialog) {
+], function($, utils, dialog) {
"use strict";
var platform = utils.platform;
@@ -173,7 +172,7 @@ define([
doc.append(
$('').addClass('close').attr('data-dismiss','alert').html('×')
).append(
- 'The IPython Notebook has two different keyboard input modes. Edit mode '+
+ 'The Jupyter Notebook has two different keyboard input modes. Edit mode '+
'allows you to type code/text into a cell and is indicated by a green cell '+
'border. Command mode binds the keyboard to notebook level actions '+
'and is indicated by a grey cell border.'
@@ -293,8 +292,5 @@ define([
return div;
};
- // Backwards compatability.
- IPython.QuickHelp = QuickHelp;
-
return {'QuickHelp': QuickHelp};
});