remove dependencies to namespace in QuickHelp

Matthias Bussonnier 11 years ago
parent 01c236e7b2
commit 4c08e4caf4

@ -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';

@ -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(
$('<button/>').addClass('close').attr('data-dismiss','alert').html('&times;')
).append(
'The IPython Notebook has two different keyboard input modes. <b>Edit mode</b> '+
'The Jupyter Notebook has two different keyboard input modes. <b>Edit mode</b> '+
'allows you to type code/text into a cell and is indicated by a green cell '+
'border. <b>Command mode</b> 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};
});

Loading…
Cancel
Save