diff options
author | Jayaram R Pai | 2014-07-06 23:30:53 +0530 |
---|---|---|
committer | Jayaram R Pai | 2014-07-06 23:30:53 +0530 |
commit | 3f5a7100a8444763ef548ea2362c1541766e1db8 (patch) | |
tree | c38a00e148e54c354cd072ddb67d826e66a30615 | |
parent | aed831c2a96a692e2161b9a1242f8635cce4b916 (diff) | |
download | custom-3f5a7100a8444763ef548ea2362c1541766e1db8.tar.gz custom-3f5a7100a8444763ef548ea2362c1541766e1db8.tar.bz2 custom-3f5a7100a8444763ef548ea2362c1541766e1db8.zip |
changed comment url
-rw-r--r-- | .custom.css.swp | bin | 12288 -> 0 bytes | |||
-rw-r--r-- | .custom.js.swp | bin | 16384 -> 0 bytes | |||
-rw-r--r-- | custom.js | 52 |
3 files changed, 1 insertions, 51 deletions
diff --git a/.custom.css.swp b/.custom.css.swp Binary files differdeleted file mode 100644 index 49465c6..0000000 --- a/.custom.css.swp +++ /dev/null diff --git a/.custom.js.swp b/.custom.js.swp Binary files differdeleted file mode 100644 index 6d41b7f..0000000 --- a/.custom.js.swp +++ /dev/null @@ -1,53 +1,3 @@ -// 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 - */ - $([IPython.events]).on('notebook_loaded.Notebook', function(){ /* first, checks if it isn't implemented yet */ if (!String.prototype.format) { @@ -127,7 +77,7 @@ $([IPython.events]).on('notebook_loaded.Notebook', function(){ var chapter = $(this).data("chapter"); var example = $(this).data("example"); var page = $(this).data("page"); - var src = "http://localhost:8000/comments/get/?book={0}&chapter={1}&example={2}&page={3}"; + var src = "http://tbc-python.fossee.in/comments/get/?book={0}&chapter={1}&example={2}&page={3}"; src = src.format(book, chapter, example, page); $comment_frame.attr({ class: "comment-frame", |