diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-04-14 12:23:10 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-04-14 12:23:10 -0400 |
commit | 7e05ea0058766a3afa2ec82f6312f2df87178883 (patch) | |
tree | a48315b8f76ccee66cbd6b6413045576cd737a44 /src/client/views/nodes/DocumentView.tsx | |
parent | d0379269b3261f846c42e30f306419044b6025a7 (diff) |
starting to add LOD
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 4d7a85316..f0f9af89f 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -26,6 +26,7 @@ import { undoBatch, UndoManager } from "../../util/UndoManager"; export interface DocumentViewProps { ContainingCollectionView: Opt<CollectionView>; Document: Document; + opacity: number; addDocument?: (doc: Document, allowDuplicates?: boolean) => boolean; removeDocument?: (doc: Document) => boolean; moveDocument?: (doc: Document, targetCollection: Document, addDocument: (document: Document) => boolean) => boolean; |