Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Docs: Added missing API docs for the image resizer state.
Browse files Browse the repository at this point in the history
  • Loading branch information
mlewand committed Sep 2, 2019
1 parent efc955d commit aa438b8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/widgetresize/resizerstate.js
Expand Up @@ -22,21 +22,21 @@ export default class ResizeState {
*/
constructor( options ) {
/**
* TODO
* The original width (pixels) of the resized object when the resize process was started.
*
* @readonly
* @member {Number} #originalWidth
*/

/**
* TODO
* The original height (pixels) of the resized object when the resize process was started.
*
* @readonly
* @member {Number} #originalHeight
*/

/**
* TODO
* The original width (percents) of the resized object when the resize process was started.
*
* @readonly
* @member {Number} #originalWidthPercents
Expand All @@ -53,7 +53,7 @@ export default class ResizeState {
this.set( 'activeHandlePosition', null );

/**
* TODO
* The width (percents) proposed, but not committed yet, in the current resize process.
*
* @readonly
* @observable
Expand All @@ -62,7 +62,7 @@ export default class ResizeState {
this.set( 'proposedWidthPercents', null );

/**
* TODO
* The width (pixels) proposed, but not committed yet, in the current resize process.
*
* @readonly
* @observable
Expand All @@ -71,7 +71,7 @@ export default class ResizeState {
this.set( 'proposedWidth', null );

/**
* TODO
* The height (pixels) proposed, but not committed yet, in the current resize process.
*
* @readonly
* @observable
Expand All @@ -83,7 +83,7 @@ export default class ResizeState {
this.set( 'proposedHandleHostHeight', null );

/**
* TODO
* A width to height ratio of the resized image.
*
* @readonly
* @member {Number} #aspectRatio
Expand Down

0 comments on commit aa438b8

Please sign in to comment.