##// END OF EJS Templates
Merge pull request #7242 from jdfreder/terminal-fixes...
Merge pull request #7242 from jdfreder/terminal-fixes Some UI design changes for the Notebook and associates

File last commit:

r18991:f2985dae
r19701:10bcecd7 merge
Show More
namespace.js
9 lines | 233 B | application/javascript | JavascriptLexer
Jonathan Frederic
Make page.html require.js friendly.
r17188 // Copyright (c) IPython Development Team.
// Distributed under the terms of the Modified BSD License.
Jonathan Frederic
Fixed global IPython namespace.
r17191 var IPython = IPython || {};
Jonathan Frederic
Make page.html require.js friendly.
r17188 define([], function(){
Matthias Bussonnier
Some cleanup unused code and missig use-strict
r18991 "use strict";
Jonathan Frederic
Make page.html require.js friendly.
r17188 IPython.version = "3.0.0-dev";
return IPython;
});