mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Matching durations along both suggested and regular
This commit is contained in:
@@ -18,7 +18,7 @@ var Suggestions = {
|
||||
var minutes = Math.floor(secs / 60);
|
||||
var seconds = secs - minutes * 60;
|
||||
|
||||
duration = minutes+"m " + seconds + "s";
|
||||
duration = Helper.pad(minutes) + ":" + Helper.pad(seconds);
|
||||
|
||||
var song = List.generateSong({id: video_id, title: video_title, length: secs, duration: duration}, false, false, false, true);
|
||||
$("#user-suggest-html").append(song);
|
||||
|
||||
Reference in New Issue
Block a user