From ee523d555f7bfd3e717036576fce880483d0ce82 Mon Sep 17 00:00:00 2001 From: Sam Reid Date: Wed, 7 Feb 2018 10:45:55 -0700 Subject: [PATCH] Updated author attributions, see https://github.com/phetsims/friction/issues/64 --- js/friction/model/FrictionModel.js | 6 +++++- js/friction/view/FrictionScreenView.js | 2 ++ js/friction/view/book/BookNode.js | 3 +++ js/friction/view/book/CoverNode.js | 2 ++ js/friction/view/magnifier/AtomNode.js | 2 ++ js/friction/view/magnifier/MagnifierNode.js | 3 +++ js/friction/view/magnifier/MagnifierTargetNode.js | 3 +++ 7 files changed, 20 insertions(+), 1 deletion(-) diff --git a/js/friction/model/FrictionModel.js b/js/friction/model/FrictionModel.js index 26b27407..894b078d 100644 --- a/js/friction/model/FrictionModel.js +++ b/js/friction/model/FrictionModel.js @@ -4,12 +4,13 @@ * The model for the Friction sim. * * @author Andrey Zelenkov (Mlearner) + * @author John Blanco (PhET Interactive Simulations) + * @author Sam Reid (PhET Interactive Simulations) */ define( function( require ) { 'use strict'; // modules - var BooleanIO = require( 'ifphetio!PHET_IO/types/BooleanIO' ); var Emitter = require( 'AXON/Emitter' ); var friction = require( 'FRICTION/friction' ); var FrictionSharedConstants = require( 'FRICTION/friction/FrictionSharedConstants' ); @@ -21,6 +22,9 @@ define( function( require ) { var Vector2 = require( 'DOT/Vector2' ); var Vector2IO = require( 'DOT/Vector2IO' ); + // phet-io modules + var BooleanIO = require( 'ifphetio!PHET_IO/types/BooleanIO' ); + // constants var ATOM_RADIUS = FrictionSharedConstants.ATOM_RADIUS; // radius of single atom var ATOM_SPACING_X = 20; // x-distance between neighbors (atoms) diff --git a/js/friction/view/FrictionScreenView.js b/js/friction/view/FrictionScreenView.js index 5ca12a7b..a3948d3c 100644 --- a/js/friction/view/FrictionScreenView.js +++ b/js/friction/view/FrictionScreenView.js @@ -4,6 +4,8 @@ * main ScreenView container. * * @author Andrey Zelenkov (Mlearner) + * @author John Blanco (PhET Interactive Simulations) + * @author Sam Reid (PhET Interactive Simulations) */ define( function( require ) { 'use strict'; diff --git a/js/friction/view/book/BookNode.js b/js/friction/view/book/BookNode.js index f9b1e975..f2e58a91 100644 --- a/js/friction/view/book/BookNode.js +++ b/js/friction/view/book/BookNode.js @@ -4,6 +4,9 @@ * Container for single book. TODO: indicate whether these are macroscopic or microscopic books. * * @author Andrey Zelenkov (Mlearner) + * @author John Blanco (PhET Interactive Simulations) + * @author Sam Reid (PhET Interactive Simulations) + * @author Michael Kauzmann (PhET Interactive Simulations) */ define( function( require ) { 'use strict'; diff --git a/js/friction/view/book/CoverNode.js b/js/friction/view/book/CoverNode.js index 07718405..417a81ea 100644 --- a/js/friction/view/book/CoverNode.js +++ b/js/friction/view/book/CoverNode.js @@ -4,6 +4,8 @@ * Container for cover of book. Only used in BookNode. * * @author Andrey Zelenkov (Mlearner) + * @author John Blanco (PhET Interactive Simulations) + * @author Sam Reid (PhET Interactive Simulations) */ define( function( require ) { 'use strict'; diff --git a/js/friction/view/magnifier/AtomNode.js b/js/friction/view/magnifier/AtomNode.js index 6b0aecc9..b6430f22 100644 --- a/js/friction/view/magnifier/AtomNode.js +++ b/js/friction/view/magnifier/AtomNode.js @@ -4,6 +4,8 @@ * view for single atom * * @author Andrey Zelenkov (Mlearner) + * @author John Blanco (PhET Interactive Simulations) + * @author Sam Reid (PhET Interactive Simulations) */ define( function( require ) { 'use strict'; diff --git a/js/friction/view/magnifier/MagnifierNode.js b/js/friction/view/magnifier/MagnifierNode.js index 197830f9..9f96d99e 100644 --- a/js/friction/view/magnifier/MagnifierNode.js +++ b/js/friction/view/magnifier/MagnifierNode.js @@ -4,6 +4,9 @@ * Container for magnifier * * @author Andrey Zelenkov (Mlearner) + * @author John Blanco (PhET Interactive Simulations) + * @author Michael Kauzmann (PhET Interactive Simulations) + * @author Sam Reid (PhET Interactive Simulations) */ define( function( require ) { 'use strict'; diff --git a/js/friction/view/magnifier/MagnifierTargetNode.js b/js/friction/view/magnifier/MagnifierTargetNode.js index 1317589e..8860a77c 100644 --- a/js/friction/view/magnifier/MagnifierTargetNode.js +++ b/js/friction/view/magnifier/MagnifierTargetNode.js @@ -4,6 +4,9 @@ * view for magnifier's target, this includes the dashed traces up to the magnified view * * @author Andrey Zelenkov (Mlearner) + * @author John Blanco (PhET Interactive Simulations) + * @author Sam Reid (PhET Interactive Simulations) + * @author Michael Kauzmann (PhET Interactive Simulations) */ define( function( require ) { 'use strict';