Skip to content

Commit

Permalink
Moving RichText from scenery-phet to scenery, see phetsims/scenery-ph…
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanolson committed Aug 8, 2017
1 parent 399bd25 commit a3b550b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/common/view/BeakerControls.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion js/common/view/graph/GraphIndicator.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion js/common/view/graph/LogarithmicGraph.js
Original file line number Diff line number Diff line change
Expand Up @@ -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' );

/**
Expand Down

0 comments on commit a3b550b

Please sign in to comment.