diff options
author | bobzel <zzzman@gmail.com> | 2021-03-26 13:22:13 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-26 13:22:13 -0400 |
commit | 36028677c61be7ab5937e864e881fa91a3b82d8c (patch) | |
tree | 63e51ff8283cf269d491bd277b8d403a3ff59474 /src/client/util/DragManager.ts | |
parent | 7878bc22a6dec8bff17f38aa3ffad897babb9e16 (diff) |
extracted AudioWaveform out of AudioBox in order to use in CollectionStackedTimelineView to share between audioBox and videoBox.
Diffstat (limited to 'src/client/util/DragManager.ts')
-rw-r--r-- | src/client/util/DragManager.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/DragManager.ts b/src/client/util/DragManager.ts index 1809a77bf..38d0ecaa6 100644 --- a/src/client/util/DragManager.ts +++ b/src/client/util/DragManager.ts @@ -388,7 +388,7 @@ export namespace DragManager { if (dragElement !== ele) { const children = [Array.from(ele.children), Array.from(dragElement.children)]; while (children[0].length) { - const childs = [children[0].pop(), children[1].pop()] + const childs = [children[0].pop(), children[1].pop()]; if (childs[0]?.children) { children[0].push(...Array.from(childs[0].children)); children[1].push(...Array.from(childs[1]!.children)); |