diff options
Diffstat (limited to 'assets/js')
| -rw-r--r-- | assets/js/watched_widget.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/assets/js/watched_widget.js b/assets/js/watched_widget.js index f1ac9cb4..02537111 100644 --- a/assets/js/watched_widget.js +++ b/assets/js/watched_widget.js @@ -32,3 +32,27 @@ function mark_unwatched(target) { } }); } + +var save_player_pos_key = 'save_player_pos'; + +function get_all_video_times() { + return helpers.storage.get(save_player_pos_key) || {}; +} + +document.querySelectorAll('.watched-indicator').forEach(function (indicator) { + var watched_part = get_all_video_times()[indicator.dataset.id]; + var total = parseInt(indicator.dataset.length, 10); + if (watched_part === undefined) { + watched_part = total; + } + var percentage = Math.round((watched_part / total) * 100); + + if (percentage < 5) { + percentage = 5; + } + if (percentage > 90) { + percentage = 100; + } + + indicator.style.width = percentage + '%'; +}); |
