From f7fc82c60f9ed6f1db9db0c28697c611b20a14b7 Mon Sep 17 00:00:00 2001 From: Marla Schulz Date: Wed, 17 Jul 2024 11:08:55 -0700 Subject: [PATCH] Add documentation to slider, see: https://github.com/phetsims/mean-share-and-balance/issues/322 --- js/balance-point/view/MeanPredictionFulcrumSlider.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/balance-point/view/MeanPredictionFulcrumSlider.ts b/js/balance-point/view/MeanPredictionFulcrumSlider.ts index a6874db..58a0893 100644 --- a/js/balance-point/view/MeanPredictionFulcrumSlider.ts +++ b/js/balance-point/view/MeanPredictionFulcrumSlider.ts @@ -103,7 +103,8 @@ export default class MeanPredictionFulcrumSlider extends HSlider { startDrag: () => { this.isDraggingProperty.value = true; }, drag: () => { fulcrumWasDraggedProperty.value = true; }, endDrag: () => { this.isDraggingProperty.value = false; }, - isDisposable: false + isDisposable: false, + phetioDocumentation: 'When the slider is disabled or in a fixed state the cueing arrows will not be visible.' }, providedOptions ); super( fulcrumValueProperty, MeanShareAndBalanceConstants.SOCCER_BALL_RANGE, options );