##// END OF EJS Templates
Update custom.js...
patricktokeeffe -
Show More
@@ -11,6 +11,16 b''
11 * It will be executed by the ipython notebook at load time.
11 * It will be executed by the ipython notebook at load time.
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 *
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 * });
14 *
24 *
15 * __Example 1:__
25 * __Example 1:__
16 *
26 *
General Comments 0
You need to be logged in to leave comments. Login now