##// END OF EJS Templates
use ask_exit payload in terminal console...
use ask_exit payload in terminal console avoid special frontend handling for ‘exit’ We really need to totally reconstruct how kernel shutdown works in the console interfaces, but at least this makes it behave as intended currently.

File last commit:

r17214:c0cbf124
r17325:bfaa365b
Show More
pagemain.js
7 lines | 218 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
@carreau review changes
r17204 require(['base/js/page'], function(page) {
var page_instance = new page.Page();
page_instance.show();
Brian Granger
Refactoring templates and top level js/css organization.
r6192 });