Skip to content

Commit

Permalink
Move timer from phet-core to axon, see phetsims/phet-core#51
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Feb 5, 2019
1 parent 12d0230 commit 496229f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/common/view/FadeTimer.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ define( function( require ) {
var geneExpressionEssentials = require( 'GENE_EXPRESSION_ESSENTIALS/geneExpressionEssentials' );
var inherit = require( 'PHET_CORE/inherit' );
var Property = require( 'AXON/Property' );
var timer = require( 'PHET_CORE/timer' );
var timer = require( 'AXON/timer' );

/**
*
Expand Down
2 changes: 1 addition & 1 deletion js/manual-gene-expression/view/FlashController.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ define( function( require ) {
// modules
var geneExpressionEssentials = require( 'GENE_EXPRESSION_ESSENTIALS/geneExpressionEssentials' );
var inherit = require( 'PHET_CORE/inherit' );
var timer = require( 'PHET_CORE/timer' );
var timer = require( 'AXON/timer' );

/**
* @param {Path} flashingNode
Expand Down

0 comments on commit 496229f

Please sign in to comment.