Basic implementation of TextBox on endless state

This commit is contained in:
matbgn 2022-06-25 06:57:05 +02:00
parent 77ae51ba6e
commit 48d1c98084

View File

@ -976,7 +976,8 @@ const whiteboard = {
top, top,
txId, txId,
isStickyNote, isStickyNote,
newLocalBox newLocalBox,
remote
) { ) {
var _this = this; var _this = this;
console.log(isStickyNote); console.log(isStickyNote);
@ -984,6 +985,8 @@ const whiteboard = {
if (isStickyNote) { if (isStickyNote) {
cssclass += " stickyNote"; cssclass += " stickyNote";
} }
left = remote ? left + _this.viewCoords.x : left;
top = remote ? top + _this.viewCoords.y : top;
var textBox = $( var textBox = $(
'<div id="' + '<div id="' +
txId + txId +
@ -1307,7 +1310,7 @@ const whiteboard = {
); );
} }
} else if (tool === "addTextBox") { } else if (tool === "addTextBox") {
_this.addTextBox(data[0], data[1], data[2], data[3], data[4], data[5], data[6]); _this.addTextBox(data[0], data[1], data[2], data[3], data[4], data[5], data[6], true);
} else if (tool === "setTextboxText") { } else if (tool === "setTextboxText") {
_this.setTextboxText(data[0], data[1]); _this.setTextboxText(data[0], data[1]);
} else if (tool === "removeTextbox") { } else if (tool === "removeTextbox") {