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 94b95b0 commit f98ad3a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/control/MultipleCollectionBoxNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ define( function( require ) {
var buildAMolecule = require( 'BUILD_A_MOLECULE/buildAMolecule' );
var Bounds2 = require( 'DOT/Bounds2' );
var inherit = require( 'PHET_CORE/inherit' );
var RichText = require( 'SCENERY_PHET/RichText' );
var RichText = require( 'SCENERY/nodes/RichText' );
var CollectionBoxNode = require( 'BUILD_A_MOLECULE/control/CollectionBoxNode' );
var MoleculeList = require( 'BUILD_A_MOLECULE/model/MoleculeList' );
var CollectionBox = require( 'BUILD_A_MOLECULE/model/CollectionBox' );
Expand Down
2 changes: 1 addition & 1 deletion js/control/SingleCollectionBoxNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ define( function( require ) {
var buildAMolecule = require( 'BUILD_A_MOLECULE/buildAMolecule' );
var Bounds2 = require( 'DOT/Bounds2' );
var inherit = require( 'PHET_CORE/inherit' );
var RichText = require( 'SCENERY_PHET/RichText' );
var RichText = require( 'SCENERY/nodes/RichText' );
var CollectionBoxNode = require( 'BUILD_A_MOLECULE/control/CollectionBoxNode' );
var MoleculeList = require( 'BUILD_A_MOLECULE/model/MoleculeList' );
var CollectionBox = require( 'BUILD_A_MOLECULE/model/CollectionBox' );
Expand Down
2 changes: 1 addition & 1 deletion js/view/view3d/Molecule3DDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ define( function( require ) {
var Bounds2 = require( 'DOT/Bounds2' );
var Node = require( 'SCENERY/nodes/Node' );
var Text = require( 'SCENERY/nodes/Text' );
var RichText = require( 'SCENERY_PHET/RichText' );
var RichText = require( 'SCENERY/nodes/RichText' );
var Rectangle = require( 'SCENERY/nodes/Rectangle' );
var RadialGradient = require( 'SCENERY/util/RadialGradient' );
var Shape = require( 'KITE/Shape' );
Expand Down

0 comments on commit f98ad3a

Please sign in to comment.