We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c65ff6d commit 8e5cbb2Copy full SHA for 8e5cbb2
1 file changed
PyLister/lister/static/lister/main.js
@@ -193,6 +193,11 @@ function bindUI() {
193
start: function(event, ui) {
194
player.unbind('timeupdate', timeUpdate);
195
},
196
+ drag: function(event, ui) {
197
+ if (playerElement.duration > 0) {
198
+ currentTime.html(parseInt(playerElement.duration * clickPercent(event)).toMMSS());
199
+ }
200
+ },
201
stop: function(event, ui) {
202
if (duration > 0) {
203
playerElement.currentTime = parseInt(playerElement.duration * clickPercent(event));
0 commit comments