From 03ff86bdfdf37d1253dd506ee0985194de6294d3 2014-12-12 20:43:57 From: Jonathan Frederic <jdfreder@calpoly.edu> Date: 2014-12-12 20:43:57 Subject: [PATCH] Make notebook.js jsdoc compatible --- diff --git a/IPython/html/static/notebook/js/notebook.js b/IPython/html/static/notebook/js/notebook.js index 6c72cc4..cb9b06b 100644 --- a/IPython/html/static/notebook/js/notebook.js +++ b/IPython/html/static/notebook/js/notebook.js @@ -48,11 +48,18 @@ define([ "use strict"; /** - * - * @exports Notebook - * @class + * Contains and manages cells. + * @class Notebook * @param {String} selector - * @param {dictionary} options + * @param {dictionary} options - Dictionary of keyword arguments. + * events: $(Events) instance + * keyboard_manager: KeyboardManager instance + * contents: Contents instance + * save_widget: SaveWidget instance + * config: dictionary + * base_url : string + * notebook_path : string + * notebook_name : string */ var Notebook = function (selector, options) { this.config = utils.mergeopt(Notebook, options.config); @@ -169,7 +176,6 @@ define([ } }; - /** * Create an HTML and CSS representation of the notebook. */