From a3b550bc1647efe8b47126a50c8ec34f5054b5c5 Mon Sep 17 00:00:00 2001 From: Jonathan Olson Date: Tue, 8 Aug 2017 11:30:43 -0600 Subject: [PATCH] Moving RichText from scenery-phet to scenery, see https://github.com/phetsims/scenery-phet/issues/326 --- js/common/view/BeakerControls.js | 2 +- js/common/view/graph/GraphIndicator.js | 2 +- js/common/view/graph/LogarithmicGraph.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/js/common/view/BeakerControls.js b/js/common/view/BeakerControls.js index 3859dd2b..c6981742 100644 --- a/js/common/view/BeakerControls.js +++ b/js/common/view/BeakerControls.js @@ -21,7 +21,7 @@ define( function( require ) { var PHScaleColors = require( 'PH_SCALE/common/PHScaleColors' ); var PHScaleConstants = require( 'PH_SCALE/common/PHScaleConstants' ); var Shape = require( 'KITE/Shape' ); - var RichText = require( 'SCENERY_PHET/RichText' ); + var RichText = require( 'SCENERY/nodes/RichText' ); var Text = require( 'SCENERY/nodes/Text' ); // strings diff --git a/js/common/view/graph/GraphIndicator.js b/js/common/view/graph/GraphIndicator.js index 16887a58..e3769c94 100644 --- a/js/common/view/graph/GraphIndicator.js +++ b/js/common/view/graph/GraphIndicator.js @@ -26,7 +26,7 @@ define( function( require ) { var Rectangle = require( 'SCENERY/nodes/Rectangle' ); var ScientificNotationNode = require( 'SCENERY_PHET/ScientificNotationNode' ); var Shape = require( 'KITE/Shape' ); - var RichText = require( 'SCENERY_PHET/RichText' ); + var RichText = require( 'SCENERY/nodes/RichText' ); // constants var POINTER_WIDTH_PERCENTAGE = 0.15; // used to compute width of the pointy part of the indicator diff --git a/js/common/view/graph/LogarithmicGraph.js b/js/common/view/graph/LogarithmicGraph.js index c8699455..3ff4adad 100644 --- a/js/common/view/graph/LogarithmicGraph.js +++ b/js/common/view/graph/LogarithmicGraph.js @@ -28,7 +28,7 @@ define( function( require ) { var PHScaleConstants = require( 'PH_SCALE/common/PHScaleConstants' ); var Property = require( 'AXON/Property' ); var Rectangle = require( 'SCENERY/nodes/Rectangle' ); - var RichText = require( 'SCENERY_PHET/RichText' ); + var RichText = require( 'SCENERY/nodes/RichText' ); var Util = require( 'DOT/Util' ); /**