diff --git a/js/making-tens/adding/view/MakingTensAddingScreenView.js b/js/making-tens/adding/view/MakingTensAddingScreenView.js index 84be88e..590198c 100644 --- a/js/making-tens/adding/view/MakingTensAddingScreenView.js +++ b/js/making-tens/adding/view/MakingTensAddingScreenView.js @@ -166,7 +166,7 @@ define( function( require ) { listener: function() { makingTensAddingModel.reset(); }, - right: this.layoutBounds.maxX - 10, + right: this.layoutBounds.maxX - 10, bottom: this.layoutBounds.maxY - 10 } ); this.addChild( resetAllButton ); @@ -179,11 +179,5 @@ define( function( require ) { this.addChild( new HSlider( mockupOpacityProperty, { min: 0, max: 1 }, { top: 10, left: 500 } ) ); } - return inherit( MakingTensCommonView, MakingTensAddingScreenView, { - - // Called by the animation loop. Optional, so if your view has no animation, you can omit this. - step: function( dt ) { - // Handle view animation here. - } - } ); + return inherit( MakingTensCommonView, MakingTensAddingScreenView ); } ); \ No newline at end of file diff --git a/js/making-tens/common/view/MakingTensCommonView.js b/js/making-tens/common/view/MakingTensCommonView.js index a007645..7513541 100644 --- a/js/making-tens/common/view/MakingTensCommonView.js +++ b/js/making-tens/common/view/MakingTensCommonView.js @@ -58,11 +58,6 @@ define( function( require ) { return inherit( ScreenView, MakingTensCommonView, { - // Called by the animation loop. Optional, so if your view has no animation, you can omit this. - step: function( dt ) { - // Handle view animation here. - }, - findPaperNumberNode: function( paperNumberModel ) { var self = this; var allPaperNumberNodes = self.paperNumberLayerNode.children; diff --git a/js/making-tens/explore/view/MakingTensExploreScreenView.js b/js/making-tens/explore/view/MakingTensExploreScreenView.js index d87ee10..f573978 100644 --- a/js/making-tens/explore/view/MakingTensExploreScreenView.js +++ b/js/making-tens/explore/view/MakingTensExploreScreenView.js @@ -94,12 +94,5 @@ define( function( require ) { } - return inherit( MakingTensCommonView, MakingTensExploreScreenView, { - - // Called by the animation loop. Optional, so if your view has no animation, you can omit this. - step: function( dt ) { - // Handle view animation here. - } - - } ); + return inherit( MakingTensCommonView, MakingTensExploreScreenView ); } ); \ No newline at end of file diff --git a/js/making-tens/game/model/MakingTensGameModel.js b/js/making-tens/game/model/MakingTensGameModel.js index 4da6f28..2ec7290 100644 --- a/js/making-tens/game/model/MakingTensGameModel.js +++ b/js/making-tens/game/model/MakingTensGameModel.js @@ -19,11 +19,5 @@ define( function( require ) { PropertySet.call( this, {} ); } - return inherit( PropertySet, MakingTensGameModel, { - - // Called by the animation loop. Optional, so if your model has no animation, you can omit this. - step: function( dt ) { - // Handle model animation here. - } - } ); + return inherit( PropertySet, MakingTensGameModel ); } ); \ No newline at end of file diff --git a/js/making-tens/game/view/MakingTensGameScreenView.js b/js/making-tens/game/view/MakingTensGameScreenView.js index 83f1711..eb34d06 100644 --- a/js/making-tens/game/view/MakingTensGameScreenView.js +++ b/js/making-tens/game/view/MakingTensGameScreenView.js @@ -25,17 +25,11 @@ define( function( require ) { listener: function() { makingTensGameModel.reset(); }, - right: this.layoutBounds.maxX - 10, + right: this.layoutBounds.maxX - 10, bottom: this.layoutBounds.maxY - 10 } ); this.addChild( resetAllButton ); } - return inherit( ScreenView, MakingTensGameScreenView, { - - // Called by the animation loop. Optional, so if your view has no animation, you can omit this. - step: function( dt ) { - // Handle view animation here. - } - } ); + return inherit( ScreenView, MakingTensGameScreenView ); } ); \ No newline at end of file