logoutmain.js
11 lines
| 340 B
| application/javascript
|
JavascriptLexer
Jonathan Frederic
|
r17192 | // Copyright (c) IPython Development Team. | ||
// Distributed under the terms of the Modified BSD License. | ||||
Brian Granger
|
r6192 | |||
Jonathan Frederic
|
r17194 | var ipython = ipython || {}; | ||
Jonathan Frederic
|
r17204 | require(['base/js/page'], function(page) { | ||
var page_instance = new page.Page(); | ||||
MinRK
|
r10885 | $('#ipython-main-app').addClass('border-box-sizing'); | ||
Jonathan Frederic
|
r17204 | page_instance.show(); | ||
ipython.page = page_instance; | ||||
Brian Granger
|
r6192 | }); | ||