aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/DragManager.ts
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2020-07-12 23:34:34 -0400
committerBob Zeleznik <zzzman@gmail.com>2020-07-12 23:34:34 -0400
commit0b0183de3a13649819983203e2aba1dc6b84fdb1 (patch)
treec83903e1a779d1c7cbdd50a2aa80bf6d137ec303 /src/client/util/DragManager.ts
parent9f1ad8a6e9c1a2071b20907af1b2c8d5adc1a65c (diff)
fixed updating RichTextMenu with proper values for fontFamily, size, bullet, and alignment
Diffstat (limited to 'src/client/util/DragManager.ts')
-rw-r--r--src/client/util/DragManager.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/DragManager.ts b/src/client/util/DragManager.ts
index 64c3d8458..5f34509a1 100644
--- a/src/client/util/DragManager.ts
+++ b/src/client/util/DragManager.ts
@@ -323,7 +323,7 @@ export namespace DragManager {
dragLabel = document.createElement("div");
dragLabel.className = "dragManager-dragLabel";
dragLabel.style.zIndex = "100001";
- dragLabel.style.fontSize = "10";
+ dragLabel.style.fontSize = "10pt";
dragLabel.style.position = "absolute";
// dragLabel.innerText = "press 'a' to embed on drop"; // bcz: need to move this to a status bar
dragDiv.appendChild(dragLabel);