aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/DragManager.ts
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2020-06-19 01:20:17 -0400
committerBob Zeleznik <zzzman@gmail.com>2020-06-19 01:20:17 -0400
commit29936187e801d851caf7a09260f1c801d6d30b59 (patch)
treeb286fcddaa48a2ec96ccdae048fb972c0da87cb2 /src/client/util/DragManager.ts
parentd8feecd0542670233e6ea87006a89eb00d10a17e (diff)
fixed a bunch of minor bugs with pdf ui, text box selection, menus, etc.
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 21564c92e..26e7250f4 100644
--- a/src/client/util/DragManager.ts
+++ b/src/client/util/DragManager.ts
@@ -328,7 +328,7 @@ export namespace DragManager {
dragLabel.style.zIndex = "100001";
dragLabel.style.fontSize = "10";
dragLabel.style.position = "absolute";
- dragLabel.innerText = "press 'a' to embed on drop";
+ // dragLabel.innerText = "press 'a' to embed on drop"; // bcz: need to move this to a status bar
dragDiv.appendChild(dragLabel);
DragManager.Root().appendChild(dragDiv);
}