fix list indentation

This commit is contained in:
Zeke Sikelianos 2016-06-23 10:36:16 -07:00
parent 271c39ceb3
commit cfebf7aa6b

View file

@ -360,25 +360,27 @@ Returns:
able to perform the corresponding action. See more about this below. able to perform the corresponding action. See more about this below.
The `mediaFlags` is an object with the following properties: The `mediaFlags` is an object with the following properties:
* `inError` Boolean - Whether the media element has crashed.
* `isPaused` Boolean - Whether the media element is paused. * `inError` Boolean - Whether the media element has crashed.
* `isMuted` Boolean - Whether the media element is muted. * `isPaused` Boolean - Whether the media element is paused.
* `hasAudio` Boolean - Whether the media element has audio. * `isMuted` Boolean - Whether the media element is muted.
* `isLooping` Boolean - Whether the media element is looping. * `hasAudio` Boolean - Whether the media element has audio.
* `isControlsVisible` Boolean - Whether the media element's controls are * `isLooping` Boolean - Whether the media element is looping.
visible. * `isControlsVisible` Boolean - Whether the media element's controls are
* `canToggleControls` Boolean - Whether the media element's controls are visible.
toggleable. * `canToggleControls` Boolean - Whether the media element's controls are
* `canRotate` Boolean - Whether the media element can be rotated. toggleable.
* `canRotate` Boolean - Whether the media element can be rotated.
The `editFlags` is an object with the following properties: The `editFlags` is an object with the following properties:
* `canUndo` Boolean - Whether the renderer believes it can undo.
* `canRedo` Boolean - Whether the renderer believes it can redo. * `canUndo` Boolean - Whether the renderer believes it can undo.
* `canCut` Boolean - Whether the renderer believes it can cut. * `canRedo` Boolean - Whether the renderer believes it can redo.
* `canCopy` Boolean - Whether the renderer believes it can copy * `canCut` Boolean - Whether the renderer believes it can cut.
* `canPaste` Boolean - Whether the renderer believes it can paste. * `canCopy` Boolean - Whether the renderer believes it can copy
* `canDelete` Boolean - Whether the renderer believes it can delete. * `canPaste` Boolean - Whether the renderer believes it can paste.
* `canSelectAll` Boolean - Whether the renderer believes it can select all. * `canDelete` Boolean - Whether the renderer believes it can delete.
* `canSelectAll` Boolean - Whether the renderer believes it can select all.
Emitted when there is a new context menu that needs to be handled. Emitted when there is a new context menu that needs to be handled.