Skip to content

Commit

Permalink
v2.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
luwes committed Feb 27, 2019
1 parent 5a7dff6 commit 30427a1
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 10 deletions.
20 changes: 19 additions & 1 deletion dist/player.es.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @vimeo/player v2.7.0 | (c) 2019 Vimeo | MIT License | https://github.com/vimeo/player.js */
/*! @vimeo/player v2.8.0 | (c) 2019 Vimeo | MIT License | https://github.com/vimeo/player.js */
function _classCallCheck(instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function");
Expand Down Expand Up @@ -1883,6 +1883,24 @@ function () {
value: function getSeekable() {
return this.get('seekable');
}
/**
* A promise to get the seeking property of the player.
*
* @promise GetSeekingPromise
* @fulfill {boolean} Whether or not the player is currently seeking.
*/

/**
* Get if the player is currently seeking.
*
* @return {GetSeekingPromise}
*/

}, {
key: "getSeeking",
value: function getSeeking() {
return this.get('seeking');
}
/**
* A promise to get the text tracks of a video.
*
Expand Down
26 changes: 22 additions & 4 deletions dist/player.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/player.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/player.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/player.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vimeo/player",
"version": "2.7.0",
"version": "2.8.0",
"description": "Interact with and control an embedded Vimeo Player.",
"license": "MIT",
"author": "Vimeo <https://vimeo.com>",
Expand Down

0 comments on commit 30427a1

Please sign in to comment.