mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-03-14 00:39:57 -04:00
No need to redefine deprecated #moveAbove()/Below(), since they're redirecting to #insertAbove()/Below().
This commit is contained in:
parent
812d3fb366
commit
f474bd9085
1 changed files with 1 additions and 11 deletions
|
@ -107,16 +107,6 @@ var Layer = this.Layer = Group.extend({
|
|||
return {
|
||||
insertAbove: move(true),
|
||||
|
||||
insertBelow: move(false),
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
moveAbove: move(true),
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
moveBelow: move(false)
|
||||
insertBelow: move(false)
|
||||
};
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue