Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. options: ITreeOptions = {
  2. allowDrag: node => this.isDraggable(node),
  3. getNodeClone: (node) => ({
  4. data: {
  5. originalId: 0,
  6. type: node.data.type,
  7. children: node.data.children
  8. },
  9. id: this.service.getLastIndex(this.tree),
  10. name: node.data.name
  11. })
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement