parent
c4676d067e
commit
2d4b410d34
@ -1,17 +1,20 @@
|
||||
// Copyright (c) Jupyter Development Team.
|
||||
// Distributed under the terms of the Modified BSD License.
|
||||
|
||||
var IPython = IPython || {};
|
||||
var Jupyter = Jupyter || {};
|
||||
define(function(){
|
||||
var utils = require('base/js/utils');
|
||||
IPython.security = require('base/js/security');
|
||||
IPython.keyboard = require('base/js/keyboard');
|
||||
IPython.dialog = require('base/js/dialog');
|
||||
IPython.utils = utils;
|
||||
IPython.load_extensions = utils.load_extensions;
|
||||
Jupyter.security = require('base/js/security');
|
||||
Jupyter.keyboard = require('base/js/keyboard');
|
||||
Jupyter.dialog = require('base/js/dialog');
|
||||
Jupyter.utils = utils;
|
||||
Jupyter.load_extensions = utils.load_extensions;
|
||||
|
||||
"use strict";
|
||||
IPython.version = "4.0.0.dev";
|
||||
IPython._target = '_blank';
|
||||
return IPython;
|
||||
Jupyter.version = "4.0.0.dev";
|
||||
Jupyter._target = '_blank';
|
||||
return Jupyter;
|
||||
});
|
||||
|
||||
// deprecated since 4.0, remove in 5+
|
||||
var IPython = Jupyter
|
||||
|
||||
Loading…
Reference in new issue