Skip to content

Commit

Permalink
Remove this reference, see #220 and #219
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisklus committed Feb 25, 2019
1 parent 97cbb19 commit f6e609f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/systems/view/TeaKettleNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ define( require => {

// make the tea kettle & stand transparent when the energy chunks are visible
energyChunksVisibleProperty.link( chunksVisible => {
if ( this.teaKettle.activeProperty.get() ) {
if ( teaKettle.activeProperty.get() ) {
const opacity = chunksVisible ? 0.7 : 1;
teaKettleImageNode.setOpacity( opacity );
burnerStandNode.setOpacity( opacity );
Expand Down

1 comment on commit f6e609f

@chrisklus
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also for #123

Please sign in to comment.