diff options
author | 2019-12-10 09:45:35 +0100 | |
---|---|---|
committer | 2020-02-04 19:16:01 +0100 | |
commit | 78e93f79eeeadb87663c4c80236a4293661004f1 (patch) | |
tree | 79816906e62f459c20343c4156ed927fb6380865 /src/templates/player.template.html | |
parent | 75596a5c7d09cfeaf08d7a20950362a7eb158af5 (diff) |
FUNCT Add support to seek
Diffstat (limited to 'src/templates/player.template.html')
-rw-r--r-- | src/templates/player.template.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/templates/player.template.html b/src/templates/player.template.html index ebf98cc..4c7662d 100644 --- a/src/templates/player.template.html +++ b/src/templates/player.template.html @@ -25,9 +25,9 @@ {{ getDuration }} </div> </div> - <div class="row"> + <div class="row no-gutters"> <div class="col-12"> - <div class="progress"> + <div class="progress" onclick="player.seek(this, event);"> <div class="progress-bar" role="progressbar" style="width: {{getPercentage}}%" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div> </div> </div> |