Skip to content
Snippets Groups Projects
Unverified Commit 390ed68c authored by Paul Kaplan's avatar Paul Kaplan Committed by GitHub
Browse files

Make variable names more explicit

parent 6d185ccc
No related branches found
No related tags found
No related merge requests found
......@@ -140,7 +140,7 @@ class TargetPane extends React.Component {
// So for now just grab the zip manually.
fetch(dragInfo.payload.bodyUrl)
.then(response => response.arrayBuffer())
.then(zip => this.props.vm.addSprite(zip));
.then(sprite3Zip => this.props.vm.addSprite(sprite3Zip));
} else if (targetId) {
// Something is being dragged over one of the sprite tiles or the backdrop.
// Dropping assets like sounds and costumes duplicate the asset on the
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment