Skip to content

Commit

Permalink
Updated author attributions, see #64
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Feb 7, 2018
1 parent 6c77d39 commit ee523d5
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 1 deletion.
6 changes: 5 additions & 1 deletion js/friction/model/FrictionModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -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' );
Expand All @@ -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)
Expand Down
2 changes: 2 additions & 0 deletions js/friction/view/FrictionScreenView.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
3 changes: 3 additions & 0 deletions js/friction/view/book/BookNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
2 changes: 2 additions & 0 deletions js/friction/view/book/CoverNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
2 changes: 2 additions & 0 deletions js/friction/view/magnifier/AtomNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
3 changes: 3 additions & 0 deletions js/friction/view/magnifier/MagnifierNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
3 changes: 3 additions & 0 deletions js/friction/view/magnifier/MagnifierTargetNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit ee523d5

Please sign in to comment.