Skip to content

Commit

Permalink
Rename timer => stepTimer, see phetsims/axon#329
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Sep 11, 2020
1 parent c7de1dd commit 982d193
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/blackbox/view/BlackBoxSceneView.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/

import Property from '../../../../axon/js/Property.js';
import timer from '../../../../axon/js/timer.js';
import stepTimer from '../../../../axon/js/stepTimer.js';
import CCKCConstants from '../../../../circuit-construction-kit-common/js/CCKCConstants.js';
import Circuit from '../../../../circuit-construction-kit-common/js/model/Circuit.js';
import Resistor from '../../../../circuit-construction-kit-common/js/model/Resistor.js';
Expand Down Expand Up @@ -202,7 +202,7 @@ class BlackBoxSceneView extends CCKCScreenView {

// Allow the wire drag event to complete so that the wire won't think it was released near another target
// and attach to it, see #173
timer.setTimeout( () => {
stepTimer.setTimeout( () => {

// If the wire connected to a black box vertex, then it may no longer exist in the model. In this case there is
// no need to move it inside the black box.
Expand Down

0 comments on commit 982d193

Please sign in to comment.