Skip to content

Commit

Permalink
Renamed canBeInvokedForReadOnlyInstances => invocableForReadOnlyInsta…
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Sep 26, 2018
1 parent ae065e8 commit fa137c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/nodes/ImageIO.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ define( function( require ) {
this.instance.image = im;
},
documentation: 'Set the image from a base64 string',
canBeInvokedForReadOnlyInstances: false
invocableForReadOnlyInstances: false
}
}, {
documentation: 'The tandem IO type for the scenery Text node',
Expand Down
4 changes: 2 additions & 2 deletions js/nodes/TextIO.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ define( function( require ) {
},
documentation: 'Sets font options for this TextIO instance, e.g. {size: 16, weight: bold}. If increasing the font ' +
'size does not make the text size larger, you may need to increase the maxWidth of the TextIO also.',
canBeInvokedForReadOnlyInstances: false
invocableForReadOnlyInstances: false
},

getFontOptions: {
Expand All @@ -88,7 +88,7 @@ define( function( require ) {
},
documentation: 'Sets the maximum width of text box. ' +
'If the text width exceeds maxWidth, it is scaled down to fit.',
canBeInvokedForReadOnlyInstances: false
invocableForReadOnlyInstances: false
},

getMaxWidth: {
Expand Down

0 comments on commit fa137c9

Please sign in to comment.