##// END OF EJS Templates
Update custom.js...
patricktokeeffe -
Show More
@@ -12,6 +12,16 b''
12 *
12 *
13 * Same thing with `profile/static/custom/custom.css` to inject custom css into the notebook.
13 * Same thing with `profile/static/custom/custom.css` to inject custom css into the notebook.
14 *
14 *
15 * Classes and functions are available at load time and may be accessed plainly:
16 *
17 * IPython.Cell.options_default.cm_config.extraKeys = {Home: "goLineLeft", End: "goLineRight"};
18 *
19 * Instances are created later however and must be accessed using events:
20 *
21 * $([IPython.events]).on("app_initialized.NotebookApp", function () {
22 * IPython.keyboard_manager....
23 * });
24 *
15 * __Example 1:__
25 * __Example 1:__
16 *
26 *
17 * Create a custom button in toolbar that execute `%qtconsole` in kernel
27 * Create a custom button in toolbar that execute `%qtconsole` in kernel
General Comments 0
You need to be logged in to leave comments. Login now