Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add JSDoc comments for additional PaperScope methods #1818

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions src/core/PaperScope.js
Original file line number Diff line number Diff line change
Expand Up @@ -266,20 +266,26 @@ var PaperScope = Base.extend(/** @lends PaperScope# */{
},

/**
* Returns a valid HTML canvas you can use.
* Returns a valid HTML canvas you can use.
* Internally, this may reuse an existing canvas.
*
* This either accepts width and height as two arguments, or you can pass
* in an object with "width" and "height" properties.
*
* @param {Number|Object} width
* @param {Number} width
* @param {Number} height
*
* @returns {HTMLCanvasElement}
*/

/**
* Returns a valid HTML canvas you can use.
* Internally, this may reuse an existing canvas.
*
* @param {Object} options An object containing the canvas width / height
Copy link
Member

@lehni lehni Jun 14, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be a Size object really, and the param name should be size then.

*
* @option width {Number}
* @option height {Number}
Copy link
Member

@lehni lehni Jun 14, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When using @option, it should include the object param name as well, so options.width and options.height in your use case. But since it should really be a Size object, this isn't even needed.

*
* @returns {HTMLCanvasElement}
*/
*/
createCanvas: function(width, height) {
return CanvasProvider.getCanvas(width, height);
},
Expand Down