diff options
author | Stanley Yip <33562077+yipstanley@users.noreply.github.com> | 2019-07-17 15:14:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-17 15:14:00 -0400 |
commit | eabf017a214ec8541005e5c8e4a42378acf73e12 (patch) | |
tree | d9da936f1bd042c463400eccc258027ca3eb383b | |
parent | e0bff91b9a700decf13ef5d6da439fa6f8868be7 (diff) |
Update PresentationView.tsx
removed console logs
-rw-r--r-- | src/client/views/presentationview/PresentationView.tsx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/client/views/presentationview/PresentationView.tsx b/src/client/views/presentationview/PresentationView.tsx index b3d4beaf4..f80840f96 100644 --- a/src/client/views/presentationview/PresentationView.tsx +++ b/src/client/views/presentationview/PresentationView.tsx @@ -65,7 +65,6 @@ export class PresentationView extends React.Component<PresViewProps> { constructor(props: PresViewProps) { super(props); PresentationView.Instance = this; - // autorun(() => console.log("Updated: ", this.presElementsMappings)); } //The first lifecycle function that gets called to set up the current presentation. @@ -328,8 +327,6 @@ export class PresentationView extends React.Component<PresViewProps> { if (curDocPresId !== undefined) { if (this.groupMappings.has(curDocPresId)) { let currentDocGroup = this.groupMappings.get(curDocPresId)!; - Array.from(this.presElementsMappings.keys()).map(doc => console.log(doc[Id])); - console.log("\n"); currentDocGroup.forEach((doc: Doc, index: number) => { let selectedButtons: boolean[] = this.presElementsMappings.get(doc)!.selected; if (selectedButtons[buttonIndex.Navigate]) { @@ -795,7 +792,6 @@ export class PresentationView extends React.Component<PresViewProps> { addPressElem = (keyDoc: Doc, elem: PresentationElement) => { this.presElementsMappings.set(keyDoc, elem); - // console.log(keyDoc, " : ", elem, " => ", this.presElementsMappings.size); } |