##// END OF EJS Templates
squashing the whitespace changes
squashing the whitespace changes

File last commit:

r20282:056c1dfe
r20287:e8dddcc1
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";
Min RK
back to dev
r20282 IPython.version = "3.0.0-dev";
Jonathan Frederic
Make page.html require.js friendly.
r17188 return IPython;
});