diff options
| author | Sam Wilkins <samwilkins333@gmail.com> | 2019-09-22 17:16:18 -0400 |
|---|---|---|
| committer | Sam Wilkins <samwilkins333@gmail.com> | 2019-09-22 17:16:18 -0400 |
| commit | f82458be8bc8beaab387cc2813b7b18c9b3caac2 (patch) | |
| tree | 4d547ad7f2623257cc585e16df17c05c8979e06a /src/client/views/presentationview | |
| parent | f529d7d22162689c08830418da67a89778111e16 (diff) | |
initial commit post master merge
Diffstat (limited to 'src/client/views/presentationview')
| -rw-r--r-- | src/client/views/presentationview/PresentationElement.tsx | 2 | ||||
| -rw-r--r-- | src/client/views/presentationview/PresentationList.tsx | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/client/views/presentationview/PresentationElement.tsx b/src/client/views/presentationview/PresentationElement.tsx index 80aa25f48..126d62c52 100644 --- a/src/client/views/presentationview/PresentationElement.tsx +++ b/src/client/views/presentationview/PresentationElement.tsx @@ -351,6 +351,7 @@ export default class PresentationElement extends React.Component<PresentationEle Document={this.props.document} addDocument={returnFalse} removeDocument={returnFalse} + ruleProvider={undefined} ScreenToLocalTransform={Transform.Identity} addDocTab={returnFalse} pinToPres={returnFalse} @@ -365,6 +366,7 @@ export default class PresentationElement extends React.Component<PresentationEle zoomToScale={emptyFunction} getScale={returnOne} ContainingCollectionView={undefined} + ContainingCollectionDoc={undefined} ContentScaling={scale} /> <div style={{ diff --git a/src/client/views/presentationview/PresentationList.tsx b/src/client/views/presentationview/PresentationList.tsx index 930ce202e..f730b4cf2 100644 --- a/src/client/views/presentationview/PresentationList.tsx +++ b/src/client/views/presentationview/PresentationList.tsx @@ -17,7 +17,9 @@ interface PresListProps { presStatus: boolean; removeDocByRef(doc: Doc): boolean; clearElemMap(): void; - + groupMappings: Map<String, Doc[]>; + presGroupBackUp: Doc; + presButtonBackUp: Doc; } |
