Skip to content

Commit

Permalink
update blur listeners for phetsims/sun#323
Browse files Browse the repository at this point in the history
  • Loading branch information
jessegreenberg committed Apr 24, 2018
1 parent 14d927c commit 2b9a3e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/JoistButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ define( function( require ) {
self.buttonModel.overProperty.value = true;
},
blur: function() {
self.buttonModel.overProperty.value = false;
self.buttonModel.a11yBlur();
}
} );

Expand Down
2 changes: 1 addition & 1 deletion js/NavigationBarScreenButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ define( function( require ) {
self.buttonModel.overProperty.value = true;
},
blur: function() {
self.buttonModel.overProperty.value = false;
self.buttonModel.a11yBlur();
}
} );

Expand Down

0 comments on commit 2b9a3e7

Please sign in to comment.