##// END OF EJS Templates
Make Container widgets take children as the first positional argument...
Make Container widgets take children as the first positional argument This makes creating containers less cumbersome: Container([list, of, children]), rather than Container(children=[list, of, children])

File last commit:

r17214:c0cbf124
r17261:da6f284c
Show More
pagemain.js
7 lines | 218 B | application/javascript | JavascriptLexer
// Copyright (c) IPython Development Team.
// Distributed under the terms of the Modified BSD License.
require(['base/js/page'], function(page) {
var page_instance = new page.Page();
page_instance.show();
});