Fix local move for textBox

This commit is contained in:
matbgn 2022-06-25 23:23:21 +02:00
parent 93ae67208e
commit 5224c6dc97

View File

@ -985,8 +985,8 @@ const whiteboard = {
if (isStickyNote) { if (isStickyNote) {
cssclass += " stickyNote"; cssclass += " stickyNote";
} }
left = remote ? left + _this.viewCoords.x : left; left = left + _this.viewCoords.x;
top = remote ? top + _this.viewCoords.y : top; top = top + _this.viewCoords.y;
var textBox = $( var textBox = $(
'<div id="' + '<div id="' +
txId + txId +