mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-09 17:58:21 +00:00
Merge pull request #3712 from Bnyro/master
feat(ux): remember time code when switching between audio/video mode
This commit is contained in:
commit
1ae1688a82
@ -344,6 +344,7 @@ export default {
|
|||||||
toggleListenUrl(_this) {
|
toggleListenUrl(_this) {
|
||||||
const url = new URL(window.location.href);
|
const url = new URL(window.location.href);
|
||||||
url.searchParams.set("listen", _this.isListening ? "0" : "1");
|
url.searchParams.set("listen", _this.isListening ? "0" : "1");
|
||||||
|
url.searchParams.set("t", Math.floor(this.currentTime));
|
||||||
return url.pathname + url.search;
|
return url.pathname + url.search;
|
||||||
},
|
},
|
||||||
isEmbed(_this) {
|
isEmbed(_this) {
|
||||||
|
Loading…
Reference in New Issue
Block a user