diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-04-04 15:23:42 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-04-04 15:23:42 -0400 |
commit | 5338dfd24d0f6a65bb3131332746c1d2c82ef7f2 (patch) | |
tree | a0b2caaa87d5d9d9851b256c8bee8ce4a1dfc293 /src/mobile/MobileInterface.tsx | |
parent | afc7afcea84463d7e7048e5f318bbd13a72f3e95 (diff) |
fix to presentationView opacity. removed getScale and zoomToScale props which weren't being used.
Diffstat (limited to 'src/mobile/MobileInterface.tsx')
-rw-r--r-- | src/mobile/MobileInterface.tsx | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/mobile/MobileInterface.tsx b/src/mobile/MobileInterface.tsx index 98a6d384e..ed6b74ca8 100644 --- a/src/mobile/MobileInterface.tsx +++ b/src/mobile/MobileInterface.tsx @@ -138,10 +138,7 @@ export default class MobileInterface extends React.Component { whenActiveChanged={emptyFunction} bringToFront={emptyFunction} ContainingCollectionView={undefined} - ContainingCollectionDoc={undefined} - zoomToScale={emptyFunction} - getScale={returnOne}> - </DocumentView>; + ContainingCollectionDoc={undefined} /> } return "hello"; } @@ -300,10 +297,7 @@ export default class MobileInterface extends React.Component { whenActiveChanged={emptyFunction} bringToFront={emptyFunction} ContainingCollectionView={undefined} - ContainingCollectionDoc={undefined} - zoomToScale={emptyFunction} - getScale={returnOne}> - </DocumentView> + ContainingCollectionDoc={undefined} /> </div> ); } |