mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-01-09 22:42:31 -05:00
Recompile
This commit is contained in:
parent
6bbeb2d0fe
commit
6906a8dc27
2 changed files with 21 additions and 19 deletions
32
vm.js
32
vm.js
|
@ -1308,8 +1308,23 @@
|
||||||
Runtime.prototype.moveBlock = function (e) {
|
Runtime.prototype.moveBlock = function (e) {
|
||||||
var _this = this;
|
var _this = this;
|
||||||
|
|
||||||
// Block has a new parent
|
// Block was removed from parent
|
||||||
if (e.oldParent === undefined && e.newParent !== undefined) {
|
if (e.newParent === undefined && e.oldParent !== undefined) {
|
||||||
|
// Add stack
|
||||||
|
_this.stacks.push(e.id);
|
||||||
|
|
||||||
|
// Update old parent
|
||||||
|
if (e.oldField === undefined) {
|
||||||
|
_this.blocks[e.oldParent].next = null;
|
||||||
|
} else {
|
||||||
|
delete _this.blocks[e.oldParent].fields[e.oldField];
|
||||||
|
}
|
||||||
|
} else if (e.newParent !== undefined) {
|
||||||
|
// Block was moved to a new parent
|
||||||
|
// Either happens because it was previously parentless
|
||||||
|
// (e.oldParent === undefined)
|
||||||
|
// or because a block was moved in front of it.
|
||||||
|
|
||||||
// Remove stack
|
// Remove stack
|
||||||
_this._deleteStack(e.id);
|
_this._deleteStack(e.id);
|
||||||
|
|
||||||
|
@ -1324,19 +1339,6 @@
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Block was removed from parent
|
|
||||||
if (e.newParent === undefined && e.oldParent !== undefined) {
|
|
||||||
// Add stack
|
|
||||||
_this.stacks.push(e.id);
|
|
||||||
|
|
||||||
// Update old parent
|
|
||||||
if (e.oldField === undefined) {
|
|
||||||
_this.blocks[e.oldParent].next = null;
|
|
||||||
} else {
|
|
||||||
delete _this.blocks[e.oldParent].fields[e.oldField];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
8
vm.min.js
vendored
8
vm.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue