mirror of
https://github.com/tubearchivist/tubearchivist
synced 2024-11-02 09:41:07 +00:00
Prevent setting progress bar on player close if video is watched. (#182)
* Prevent setting progress bar on close if watched.
This commit is contained in:
parent
6822ed380d
commit
ad5e74cb27
@ -444,7 +444,7 @@ function getVideoPlayerDuration() {
|
|||||||
function getVideoPlayerWatchStatus() {
|
function getVideoPlayerWatchStatus() {
|
||||||
var videoId = getVideoPlayerVideoId();
|
var videoId = getVideoPlayerVideoId();
|
||||||
var watched = false;
|
var watched = false;
|
||||||
if(document.getElementById(videoId).className != "unseen-icon") {
|
if(document.getElementById(videoId) != null && document.getElementById(videoId).className != "unseen-icon") {
|
||||||
watched = true;
|
watched = true;
|
||||||
}
|
}
|
||||||
return watched;
|
return watched;
|
||||||
@ -608,8 +608,10 @@ function removePlayer() {
|
|||||||
function setProgressBar(videoId, currentTime, duration) {
|
function setProgressBar(videoId, currentTime, duration) {
|
||||||
progressBar = document.getElementById("progress-" + videoId);
|
progressBar = document.getElementById("progress-" + videoId);
|
||||||
progressBarWidth = (currentTime / duration) * 100 + "%";
|
progressBarWidth = (currentTime / duration) * 100 + "%";
|
||||||
if (progressBar) {
|
if (progressBar && !getVideoPlayerWatchStatus()) {
|
||||||
progressBar.style.width = progressBarWidth;
|
progressBar.style.width = progressBarWidth;
|
||||||
|
} else if (progressBar) {
|
||||||
|
progressBar.style.width = "0%";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user