Make notebook.js jsdoc compatible

This commit is contained in:
Jonathan Frederic 2014-12-05 12:10:37 -08:00 committed by Jonathan Frederic
parent 0f2da9aa07
commit 5802309151

View File

@ -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.
*/