Skip to content

Commit

Permalink
Merge pull request scratchfoundation#21 from tmickel/bugfix/costume-lib
Browse files Browse the repository at this point in the history
Fix string interpolation in costume-library
  • Loading branch information
tmickel authored Nov 21, 2016
2 parents 2060cb0 + 05a2c5f commit a49e063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/containers/costume-library.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class CostumeLibrary extends React.Component {
}
handleItemSelected (item) {
const vmCostume = {
skin: `https://cdn.assets.scratch.mit.edu/internalapi/asset/$(item.md5)/get/`,
skin: `https://cdn.assets.scratch.mit.edu/internalapi/asset/${item.md5}/get/`,
name: item.name,
rotationCenterX: item.info[0],
rotationCenterY: item.info[1]
Expand Down

0 comments on commit a49e063

Please sign in to comment.