##// END OF EJS Templates
Make notebook.js jsdoc compatible
Jonathan Frederic -
Show More
@@ -48,11 +48,18 define([
48 "use strict";
48 "use strict";
49
49
50 /**
50 /**
51 *
51 * Contains and manages cells.
52 * @exports Notebook
52 * @class Notebook
53 * @class
54 * @param {String} selector
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 var Notebook = function (selector, options) {
64 var Notebook = function (selector, options) {
58 this.config = utils.mergeopt(Notebook, options.config);
65 this.config = utils.mergeopt(Notebook, options.config);
@@ -169,7 +176,6 define([
169 }
176 }
170 };
177 };
171
178
172
173 /**
179 /**
174 * Create an HTML and CSS representation of the notebook.
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