mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-27 04:20:22 +08:00
Make notebook.js jsdoc compatible
This commit is contained in:
parent
0f2da9aa07
commit
5802309151
@ -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.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user