Skip to content

Commit

Permalink
Fixed lint issues, see phetsims/concentration#34
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Mar 6, 2015
1 parent 93d8dbb commit f55e5fe
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions js/buttons/RoundPushButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,19 @@ define( function( require ) {
set componentID( c ) {
this.buttonModel.componentID = c;
},

get componentID() {
return this.buttonModel.componentID;
},

set componentType( c ) {
this.buttonModel.componentType = c;
},

get componentType() {
return this.buttonModel.componentType;
},

addListener: function( listener ) {
this.buttonModel.addListener( listener );
},
Expand Down

0 comments on commit f55e5fe

Please sign in to comment.