Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/components/__snapshots__/manager.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,8 @@ exports[`<Manager /> should render the export configuration when specified. 1`]
slideIndex={0}
transition={Array []}
transitionDuration={0}
transitionIn={Array []}
transitionOut={Array []}
>
<div>
Slide Content
Expand All @@ -401,6 +403,8 @@ exports[`<Manager /> should render the export configuration when specified. 1`]
slideIndex={1}
transition={Array []}
transitionDuration={0}
transitionIn={Array []}
transitionOut={Array []}
>
<div>
Slide Content
Expand Down
12 changes: 12 additions & 0 deletions src/components/__snapshots__/presenter.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ exports[`<Presenter /> should render correctly 1`] = `
slideIndex={1}
transition={Array []}
transitionDuration={0}
transitionIn={Array []}
transitionOut={Array []}
>
<div>
Slide Content
Expand Down Expand Up @@ -134,6 +136,8 @@ exports[`<Presenter /> should render correctly 1`] = `
slideIndex={2}
transition={Array []}
transitionDuration={0}
transitionIn={Array []}
transitionOut={Array []}
>
<div>
Slide Content
Expand Down Expand Up @@ -288,6 +292,8 @@ exports[`<Presenter /> should render timer when set in params. 1`] = `
slideIndex={1}
transition={Array []}
transitionDuration={0}
transitionIn={Array []}
transitionOut={Array []}
>
<div>
Slide Content
Expand Down Expand Up @@ -315,6 +321,8 @@ exports[`<Presenter /> should render timer when set in params. 1`] = `
slideIndex={2}
transition={Array []}
transitionDuration={0}
transitionIn={Array []}
transitionOut={Array []}
>
<div>
Slide Content
Expand Down Expand Up @@ -454,6 +462,8 @@ exports[`<Presenter /> should render with notes when slides have them. 1`] = `
slideIndex={1}
transition={Array []}
transitionDuration={0}
transitionIn={Array []}
transitionOut={Array []}
>
<div>
Slide Content
Expand Down Expand Up @@ -481,6 +491,8 @@ exports[`<Presenter /> should render with notes when slides have them. 1`] = `
slideIndex={2}
transition={Array []}
transitionDuration={0}
transitionIn={Array []}
transitionOut={Array []}
>
<div>
Slide Content
Expand Down
2 changes: 2 additions & 0 deletions src/components/export.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ export default class Export extends Component {
export: this.props.route.params.indexOf('export') !== -1,
print: this.props.route.params.indexOf('print') !== -1,
transition: [],
transitionIn: [],
transitionOut: [],
transitionDuration: 0
});
});
Expand Down
4 changes: 4 additions & 0 deletions src/components/presenter.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ export default class Presenter extends Component {
slideIndex,
lastSlideIndex,
transition: [],
transitionIn: [],
transitionOut: [],
transitionDuration: 0,
presenterStyle,
});
Expand All @@ -83,6 +85,8 @@ export default class Presenter extends Component {
slideIndex: slideIndex + 1,
lastSlideIndex,
transition: [],
transitionIn: [],
transitionOut: [],
transitionDuration: 0,
presenterStyle,
appearOff: true,
Expand Down