From dbbd29128c67239ab7a5a63676486dfa8bf0d8dc Mon Sep 17 00:00:00 2001 From: zepumph Date: Fri, 31 Mar 2017 11:53:25 -0600 Subject: [PATCH] implemented logic on 'enter' of particle placement, https://github.com/phetsims/build-an-atom/issues/150 --- js/common/view/AtomView.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/common/view/AtomView.js b/js/common/view/AtomView.js index a6e937ef..39e81c8a 100644 --- a/js/common/view/AtomView.js +++ b/js/common/view/AtomView.js @@ -199,8 +199,7 @@ define( function( require ) { model.moveParticleToDropLocation( nearestParticle, model.particleAtom.positionProperty.get() ); // focus the atom for placement of particles - atomNode.electronShell.handleAccessibleDrag( nearestParticle ); - // atomNode.electronShell.focus(); + atomNode.electronShell.handleAccessibleDrag( nearestParticle, bucketFront ); } } ); } );