##// END OF EJS Templates
Updated custom.js template to reflect IPython namespace changes
Jonathan Frederic -
Show More
@@ -17,7 +17,7 b''
17 * Create a custom button in toolbar that execute `%qtconsole` in kernel
17 * Create a custom button in toolbar that execute `%qtconsole` in kernel
18 * and hence open a qtconsole attached to the same kernel as the current notebook
18 * and hence open a qtconsole attached to the same kernel as the current notebook
19 *
19 *
20 * $([IPython.events]).on('app_initialized.NotebookApp', function(){
20 * IPython.events.on('app_initialized.NotebookApp', function(){
21 * IPython.toolbar.add_buttons_group([
21 * IPython.toolbar.add_buttons_group([
22 * {
22 * {
23 * 'label' : 'run qtconsole',
23 * 'label' : 'run qtconsole',
@@ -35,7 +35,7 b''
35 * At the completion of the dashboard loading, load an unofficial javascript extension
35 * At the completion of the dashboard loading, load an unofficial javascript extension
36 * that is installed in profile/static/custom/
36 * that is installed in profile/static/custom/
37 *
37 *
38 * $([IPython.events]).on('app_initialized.DashboardApp', function(){
38 * IPython.events.on('app_initialized.DashboardApp', function(){
39 * require(['custom/unofficial_extension.js'])
39 * require(['custom/unofficial_extension.js'])
40 * });
40 * });
41 *
41 *
General Comments 0
You need to be logged in to leave comments. Login now