##// END OF EJS Templates
In person review with @ellisonbg
In person review with @ellisonbg

File last commit:

r17204:b67653df
r17210:364855f8
Show More
pagemain.js
10 lines | 282 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.
Brian Granger
Refactoring templates and top level js/css organization.
r6192
Jonathan Frederic
Use ipython namepsace for instances.
r17193 var ipython = ipython || {};
Jonathan Frederic
@carreau review changes
r17204 require(['base/js/page'], function(page) {
var page_instance = new page.Page();
page_instance.show();
ipython.page = page_instance;
Brian Granger
Refactoring templates and top level js/css organization.
r6192 });