##// END OF EJS Templates
Make notebook.js jsdoc compatible
Jonathan Frederic -
Show More
@@ -48,11 +48,18 define([
48 48 "use strict";
49 49
50 50 /**
51 *
52 * @exports Notebook
53 * @class
51 * Contains and manages cells.
52 * @class Notebook
54 53 * @param {String} selector
55 * @param {dictionary} options
54 * @param {dictionary} options - Dictionary of keyword arguments.
55 * events: $(Events) instance
56 * keyboard_manager: KeyboardManager instance
57 * contents: Contents instance
58 * save_widget: SaveWidget instance
59 * config: dictionary
60 * base_url : string
61 * notebook_path : string
62 * notebook_name : string
56 63 */
57 64 var Notebook = function (selector, options) {
58 65 this.config = utils.mergeopt(Notebook, options.config);
@@ -169,7 +176,6 define([
169 176 }
170 177 };
171 178
172
173 179 /**
174 180 * Create an HTML and CSS representation of the notebook.
175 181 */
General Comments 0
You need to be logged in to leave comments. Login now