diff options
author | David Dobryakov <32088636+kantegory@users.noreply.github.com> | 2020-03-25 15:32:29 +0300 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-03-25 13:52:35 +0100 |
commit | b2b0ce8ac81864f64f6c6bc9dda4d53ed641bf10 (patch) | |
tree | 5f53dfb5708c9e03f884f408c34a3da0b5816c35 | |
parent | 5411da31d1070654e4c4b80ad3ad6889b048a4db (diff) | |
download | PeerTube-b2b0ce8ac81864f64f6c6bc9dda4d53ed641bf10.tar.gz PeerTube-b2b0ce8ac81864f64f6c6bc9dda4d53ed641bf10.tar.zst PeerTube-b2b0ce8ac81864f64f6c6bc9dda4d53ed641bf10.zip |
Fix embed api docs
player.stop() -> player.pause()
-rw-r--r-- | support/doc/api/embeds.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/doc/api/embeds.md b/support/doc/api/embeds.md index 6ee7deeab..b1791ea13 100644 --- a/support/doc/api/embeds.md +++ b/support/doc/api/embeds.md | |||
@@ -46,7 +46,7 @@ await player.ready // wait for the player to be ready | |||
46 | // now you can use it! | 46 | // now you can use it! |
47 | player.play() | 47 | player.play() |
48 | player.seek(32) | 48 | player.seek(32) |
49 | player.stop() | 49 | player.pause() |
50 | ``` | 50 | ``` |
51 | 51 | ||
52 | # Methods | 52 | # Methods |