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 88fb7bd commit a37cf11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/pointslope/view/PointSlopeEquationNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ define( function( require ) {
var scenery = { Line: require( 'SCENERY/nodes/Line' ) }; // scenery.Line, workaround for name collision with graphing-lines.Line
var SlopePicker = require( 'GRAPHING_LINES/common/view/picker/SlopePicker' );
var StringUtils = require( 'PHETCOMMON/util/StringUtils' );
var RichText = require( 'SCENERY_PHET/RichText' );
var RichText = require( 'SCENERY/nodes/RichText' );
var Text = require( 'SCENERY/nodes/Text' );
var UndefinedSlopeIndicator = require( 'GRAPHING_LINES/common/view/UndefinedSlopeIndicator' );
var Util = require( 'DOT/Util' );
Expand Down
2 changes: 1 addition & 1 deletion js/slope/view/SlopeEquationNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ define( function( require ) {
var Property = require( 'AXON/Property' );
var scenery = { Line: require( 'SCENERY/nodes/Line' ) }; // scenery.Line, workaround for name collision with graphing-lines.Line
var StringUtils = require( 'PHETCOMMON/util/StringUtils' );
var RichText = require( 'SCENERY_PHET/RichText' );
var RichText = require( 'SCENERY/nodes/RichText' );
var Text = require( 'SCENERY/nodes/Text' );
var UndefinedSlopeIndicator = require( 'GRAPHING_LINES/common/view/UndefinedSlopeIndicator' );
var Util = require( 'DOT/Util' );
Expand Down

0 comments on commit a37cf11

Please sign in to comment.