diff --git a/js/buttons/RoundPushButton.js b/js/buttons/RoundPushButton.js index 065d5fe4..47e70792 100644 --- a/js/buttons/RoundPushButton.js +++ b/js/buttons/RoundPushButton.js @@ -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 ); },