##// END OF EJS Templates
Merge pull request #6258 from patricktokeeffe/patch-1...
Matthias Bussonnier -
r17762:0214dd73 merge
parent child Browse files
Show More
@@ -11,6 +11,17 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';
18 * IPython.Cell.options_default.cm_config.extraKeys['End'] = 'goLineRight';
19 *
20 * Instances are created later however and must be accessed using events:
21 *
22 * $([IPython.events]).on("app_initialized.NotebookApp", function () {
23 * IPython.keyboard_manager....
24 * });
14 *
25 *
15 * __Example 1:__
26 * __Example 1:__
16 *
27 *
General Comments 0
You need to be logged in to leave comments. Login now