diff options
| author | Lionel Han <47760119+IGoByJoe@users.noreply.github.com> | 2020-06-18 15:02:50 -0700 |
|---|---|---|
| committer | Lionel Han <47760119+IGoByJoe@users.noreply.github.com> | 2020-06-18 15:02:50 -0700 |
| commit | 738a56b3c18c06d8290346373eb60a125120caaf (patch) | |
| tree | 88bd022cdf1adf236dab52717c4ac3402e43d94f /src/mobile | |
| parent | cb5fa90bb580c2d618e279275c1e2cb49ce3d90c (diff) | |
hopefully fixed new ink
Diffstat (limited to 'src/mobile')
| -rw-r--r-- | src/mobile/MobileInterface.tsx | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/src/mobile/MobileInterface.tsx b/src/mobile/MobileInterface.tsx index 4000bee85..3a81e5de1 100644 --- a/src/mobile/MobileInterface.tsx +++ b/src/mobile/MobileInterface.tsx @@ -708,6 +708,10 @@ export class MobileInterface extends React.Component { e.stopPropagation(); } + uploadToCurrentCollection = (doc: Doc) => { + + } + render() { return ( <div className="mobileInterface-container" onDragOver={this.onDragOver}> @@ -717,13 +721,13 @@ export class MobileInterface extends React.Component { </div> {this.switchMenuView()} {this.inkMenu()} + <div className="docButtonContainer"> + {this.pinToPresentation()} + {this.downloadDocument()} + {this.drawInk()} + {this.uploadAudioButton()} + </div> <GestureOverlay> - <div className="docButtonContainer"> - {this.pinToPresentation()} - {this.downloadDocument()} - {this.drawInk()} - {this.uploadAudioButton()} - </div> {this.displayWorkspaces()} {this.renderDefaultContent()} </GestureOverlay> |
