|
|
|
@ -713,7 +713,7 @@ Elements with the `contenteditable` attribute support `innerHTML` and `textConte
|
|
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
|
|
Media elements (`<audio>` and `<video>`) have their own set of bindings — six *readonly* ones...
|
|
|
|
Media elements (`<audio>` and `<video>`) have their own set of bindings — seven *readonly* ones...
|
|
|
|
|
|
|
|
|
|
|
|
* `duration` (readonly) — the total duration of the video, in seconds
|
|
|
|
* `duration` (readonly) — the total duration of the video, in seconds
|
|
|
|
* `buffered` (readonly) — an array of `{start, end}` objects
|
|
|
|
* `buffered` (readonly) — an array of `{start, end}` objects
|
|
|
|
@ -721,6 +721,7 @@ Media elements (`<audio>` and `<video>`) have their own set of bindings — six
|
|
|
|
* `seekable` (readonly) — ditto
|
|
|
|
* `seekable` (readonly) — ditto
|
|
|
|
* `seeking` (readonly) — boolean
|
|
|
|
* `seeking` (readonly) — boolean
|
|
|
|
* `ended` (readonly) — boolean
|
|
|
|
* `ended` (readonly) — boolean
|
|
|
|
|
|
|
|
* `readyState` (readonly) — number between (and including) 0 and 4
|
|
|
|
|
|
|
|
|
|
|
|
...and five *two-way* bindings:
|
|
|
|
...and five *two-way* bindings:
|
|
|
|
|
|
|
|
|
|
|
|
@ -741,6 +742,7 @@ Videos additionally have readonly `videoWidth` and `videoHeight` bindings.
|
|
|
|
bind:seekable
|
|
|
|
bind:seekable
|
|
|
|
bind:seeking
|
|
|
|
bind:seeking
|
|
|
|
bind:ended
|
|
|
|
bind:ended
|
|
|
|
|
|
|
|
bind:readyState
|
|
|
|
bind:currentTime
|
|
|
|
bind:currentTime
|
|
|
|
bind:playbackRate
|
|
|
|
bind:playbackRate
|
|
|
|
bind:paused
|
|
|
|
bind:paused
|
|
|
|
|