aboutsummaryrefslogtreecommitdiff
path: root/src/client/util
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2020-05-21 00:37:12 -0400
committerBob Zeleznik <zzzman@gmail.com>2020-05-21 00:37:12 -0400
commit45386f6950e5ae8390486900a430061bfe9e4846 (patch)
tree4705bf4c2720fa930f4f5c42d9804e125f59f892 /src/client/util
parente1d5a99120645905a525aad25b737d4a5296e54d (diff)
added animation to comparisonBox, cleaned up some npm modules
Diffstat (limited to 'src/client/util')
-rw-r--r--src/client/util/SelectionManager.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/util/SelectionManager.ts b/src/client/util/SelectionManager.ts
index bd743c28e..05515e502 100644
--- a/src/client/util/SelectionManager.ts
+++ b/src/client/util/SelectionManager.ts
@@ -54,8 +54,6 @@ export namespace SelectionManager {
manager.SelectDoc(docView, ctrlPressed);
}
- export function SetIsDragging(dragging: boolean) { runInAction(() => manager.IsDragging = dragging); }
- export function GetIsDragging() { return manager.IsDragging; }
// computed functions, such as used in IsSelected generate errors if they're called outside of a
// reaction context. Specifying the context with 'outsideReaction' allows an efficiency feature
// to avoid unnecessary mobx invalidations when running inside a reaction.