Rewind

Toggles playing the playback in reverse.

Syntax

store.dispatch({ type: "SET_PLAYER_REWIND", payload: rewind });

Parameters

rewind

A boolean indicating whether or not the player should play in reverse.

Examples

Enables rewind mode.

store.dispatch({
  type: "SET_PLAYER_REWIND",
  payload: true
});