##// END OF EJS Templates
Merge pull request #13 from ipython/next_url...
Merge pull request #13 from ipython/next_url restrict login redirect to notebook app closes #8314

File last commit:

r21244:38929298
r21490:4370a155 merge
Show More
namespace.js
10 lines | 265 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
use dev for maintenance branch version...
r21244 IPython.version = "3.2.0-dev";
Min RK
ensure IPython._target is defined
r20326 IPython._target = '_blank';
Jonathan Frederic
Make page.html require.js friendly.
r17188 return IPython;
});