diff options
| author | bobzel <zzzman@gmail.com> | 2020-10-20 22:08:34 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-10-20 22:08:34 -0400 |
| commit | 21989281937891b89c8cd4bfeb53027a7d14640e (patch) | |
| tree | 420d66705e68e84ad2e9a299a1ca8aa8daf35d63 /src/client/views/presentationview | |
| parent | d6bbb7f9fc80bb923cad66ec7c7afd54d7af1dcf (diff) | |
fixed list operation synchronizatoin on server and made preselementbox change
Diffstat (limited to 'src/client/views/presentationview')
| -rw-r--r-- | src/client/views/presentationview/PresElementBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/presentationview/PresElementBox.tsx b/src/client/views/presentationview/PresElementBox.tsx index 9e1a7b615..6fde7c2ac 100644 --- a/src/client/views/presentationview/PresElementBox.tsx +++ b/src/client/views/presentationview/PresElementBox.tsx @@ -175,7 +175,7 @@ export class PresElementBox extends ViewBoxBaseComponent<FieldViewProps, PresDoc } else if (dragArray.length >= 1) { const doc = document.createElement('div'); doc.className = "presItem-multiDrag"; - doc.innerText = "Move " + dragArray.length + " slides"; + doc.innerText = "Move " + PresBox.Instance._selectedArray.length + " slides"; doc.style.position = 'absolute'; doc.style.top = (e.clientY) + 'px'; doc.style.left = (e.clientX - 50) + 'px'; |
