diff options
author | Sam Potts <sam@potts.es> | 2017-11-09 00:22:40 +1100 |
---|---|---|
committer | Sam Potts <sam@potts.es> | 2017-11-09 00:22:40 +1100 |
commit | 86a5724bdb84a1dc9e503f5907ad80caf395bf0a (patch) | |
tree | e0cd98ee88c9cd468f062cc7937ccec1f841a90f | |
parent | 63c963d726746fdfe012b28760e62fc1fe9da253 (diff) | |
download | plyr-86a5724bdb84a1dc9e503f5907ad80caf395bf0a.tar.lz plyr-86a5724bdb84a1dc9e503f5907ad80caf395bf0a.tar.xz plyr-86a5724bdb84a1dc9e503f5907ad80caf395bf0a.zip |
Missing code highlight
-rw-r--r-- | readme.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -214,8 +214,8 @@ Option | Type | Default | Description ------ | ---- | ------- | ----------- `enabled` | Boolean | `true` | Completely disable Plyr. This would allow you to do a User Agent check or similar to programmatically enable or disable Plyr for a certain UA. Example below. `debug` | Boolean | `false` | Display debugging information in the console -`controls` | Function or Array | ['play-large', 'play', 'progress', 'current-time', 'mute', 'volume', 'captions', 'settings', 'pip', 'airplay', 'fullscreen' ] | If a function is passed, it is assumed your method will return a string of HTML for the controls. Three arguments will be passed to your function; id (the unique id for the player), seektime (the seektime step in seconds), and title (the media title). See [controls.md](controls.md) for more info on how the html needs to be structured. -`settings` | Array | ['captions', 'quality', 'speed', 'loop'] | If you're using the default controls are used then you can specify which settings to show in the menu +`controls` | Function or Array | `['play-large', 'play', 'progress', 'current-time', 'mute', 'volume', 'captions', 'settings', 'pip', 'airplay', 'fullscreen']` | If a function is passed, it is assumed your method will return a string of HTML for the controls. Three arguments will be passed to your function; id (the unique id for the player), seektime (the seektime step in seconds), and title (the media title). See [controls.md](controls.md) for more info on how the html needs to be structured. +`settings` | Array | `['captions', 'quality', 'speed', 'loop']` | If you're using the default controls are used then you can specify which settings to show in the menu `i18n` | Object | See [defaults.js](/src/js/defaults.js) | Used for internationalization (i18n) of the tooltips/labels within the buttons. `loadSprite` | Boolean | `true` | Load the SVG sprite specified as the `iconUrl` option (if a URL). If `false`, it is assumed you are handling sprite loading yourself. `iconUrl` | String | `null` | Specify a URL or path to the SVG sprite. See the [SVG section](#svg) for more info. |