Created
July 3, 2015 10:05
-
-
Save scholich/edd9f482b95ebda9d454 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// leave at least 2 line with only a star on it below, or doc generation fails | |
/** | |
* | |
* | |
* Placeholder for custom user javascript | |
* mainly to be overridden in profile/static/custom/custom.js | |
* This will always be an empty file in IPython | |
* | |
* User could add any javascript in the `profile/static/custom/custom.js` file | |
* (and should create it if it does not exist). | |
* It will be executed by the ipython notebook at load time. | |
* | |
* Same thing with `profile/static/custom/custom.css` to inject custom css into the notebook. | |
* | |
* Example : | |
* | |
* Create a custom button in toolbar that execute `%qtconsole` in kernel | |
* and hence open a qtconsole attached to the same kernel as the current notebook | |
* | |
* $([IPython.events]).on('app_initialized.NotebookApp', function(){ | |
* IPython.toolbar.add_buttons_group([ | |
* { | |
* 'label' : 'run qtconsole', | |
* 'icon' : 'icon-terminal', // select your icon from http://fortawesome.github.io/Font-Awesome/icons | |
* 'callback': function () { | |
* IPython.notebook.kernel.execute('%qtconsole') | |
* } | |
* } | |
* // add more button here if needed. | |
* ]); | |
* }); | |
* | |
* Example : | |
* | |
* Use `jQuery.getScript(url [, success(script, textStatus, jqXHR)] );` | |
* to load custom script into the notebook. | |
* | |
* // to load the metadata ui extension example. | |
* $.getScript('/static/notebook/js/celltoolbarpresets/example.js'); | |
* // or | |
* // to load the metadata ui extension to control slideshow mode / reveal js for nbconvert | |
* $.getScript('/static/notebook/js/celltoolbarpresets/slideshow.js'); | |
* | |
* | |
* @module IPython | |
* @namespace IPython | |
* @class customjs | |
* @static | |
*/ | |
// Gist button https://github.com/minrk/ipython_extensions#table-of-contents | |
$([IPython.events]).on("app_initialized.NotebookApp", function () { | |
IPython.load_extensions("gist"); | |
}); | |
// Table of contents https://github.com/minrk/ipython_extensions#table-of-contents | |
$([IPython.events]).on("app_initialized.NotebookApp", function () { | |
IPython.load_extensions("toc"); | |
}); | |
IPython.load_extensions('calico-spell-check', 'calico-document-tools', 'calico-cell-tools'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment