From e57af930b25c28273ebe6e419bb3a32f4c01e3b4 Mon Sep 17 00:00:00 2001 From: Chris Malley Date: Tue, 6 Nov 2018 10:57:15 -0700 Subject: [PATCH] #43 relocate constructor doc Signed-off-by: Chris Malley --- .../view/PointOnParabolaLinesNode.js | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/js/focusanddirectrix/view/PointOnParabolaLinesNode.js b/js/focusanddirectrix/view/PointOnParabolaLinesNode.js index b53b6ad1..e67050ba 100644 --- a/js/focusanddirectrix/view/PointOnParabolaLinesNode.js +++ b/js/focusanddirectrix/view/PointOnParabolaLinesNode.js @@ -18,17 +18,16 @@ define( require => { const Node = require( 'SCENERY/nodes/Node' ); const Property = require( 'AXON/Property' ); - //Review: This JSDoc should go above the constructor - /** - * @param {Property.} quadraticProperty - the interactive quadratic - * @param {Property.} pointOnParabolaProperty - the point - * @param {ModelViewTransform2} modelViewTransform - * @param {Property.} pointOnParabolaVisibleProperty - * @param {Property.} focusVisibleProperty - * @param {Property.} directrixVisibleProperty - */ class PointOnParabolaLinesNode extends Node { + /** + * @param {Property.} quadraticProperty - the interactive quadratic + * @param {Property.} pointOnParabolaProperty - the point + * @param {ModelViewTransform2} modelViewTransform + * @param {Property.} pointOnParabolaVisibleProperty + * @param {Property.} focusVisibleProperty + * @param {Property.} directrixVisibleProperty + */ constructor( quadraticProperty, pointOnParabolaProperty, modelViewTransform, pointOnParabolaVisibleProperty, focusVisibleProperty, directrixVisibleProperty ) {