diff options
author | madelinegr <mgriswold99@gmail.com> | 2019-06-10 14:17:27 -0400 |
---|---|---|
committer | madelinegr <mgriswold99@gmail.com> | 2019-06-10 14:17:27 -0400 |
commit | caf61bef345db0addd37c03bf2d0b0d2dd724c47 (patch) | |
tree | 324c6abb99cd141fbafb2e2cab18bb06dbe99cc1 | |
parent | 6339ce36664b008c4274dc51fc2e7851b9dabf89 (diff) |
Edge Case For Starting Presentation Fixed
Navigation happens when u start document
-rw-r--r-- | src/client/views/presentationview/PresentationView.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/presentationview/PresentationView.tsx b/src/client/views/presentationview/PresentationView.tsx index 8d1be6af1..40e6885f0 100644 --- a/src/client/views/presentationview/PresentationView.tsx +++ b/src/client/views/presentationview/PresentationView.tsx @@ -320,6 +320,7 @@ export class PresentationView extends React.Component<PresViewProps> { } else { this.presStatus = true; this.startPresentation(0); + this.gotoDocument(0); } } |