##// END OF EJS Templates
Remove false info in custom.js
Matthias Bussonnier -
Show More
@@ -7,17 +7,17 b''
7 * This will always be an empty file in IPython
7 * This will always be an empty file in IPython
8 *
8 *
9 * User could add any javascript in the `profile/static/custom/custom.js` file
9 * User could add any javascript in the `profile/static/custom/custom.js` file
10 * (and should create it if it does not exist).
11 * It will be executed by the ipython notebook at load time.
10 * It will be executed by the ipython notebook at load time.
12 *
11 *
13 * Same thing with `profile/static/custom/custom.css` to inject custom css into the notebook.
12 * Same thing with `profile/static/custom/custom.css` to inject custom css into the notebook.
14 *
13 *
15 * Classes and functions are available at load time and may be accessed plainly:
16 *
14 *
17 * IPython.Cell.options_default.cm_config.extraKeys['Home'] = 'goLineLeft';
15 * The object available at load time depend on the version of IPython in use.
18 * IPython.Cell.options_default.cm_config.extraKeys['End'] = 'goLineRight';
16 * there is no guaranties of API stability.
19 *
17 *
20 * Instances are created later however and must be accessed using events:
18 * The example below explain the principle, and might not be valid.
19 *
20 * Instances are created after the loading of this file and might need to be accessed using events:
21 * define([
21 * define([
22 * 'base/js/namespace',
22 * 'base/js/namespace',
23 * 'base/js/events'
23 * 'base/js/events'
General Comments 0
You need to be logged in to leave comments. Login now