mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Added test serverside to ensure that title is correct + duration isn't insanely much higher that it should be
This commit is contained in:
@@ -136,6 +136,9 @@ var List = {
|
||||
found_array_index = 0;
|
||||
//if(!w_p) List.dragging(true);
|
||||
break;
|
||||
case "changed_values":
|
||||
List.changedValues(msg.value);
|
||||
break;
|
||||
case "song_change_prev":
|
||||
if(window.location.pathname != "/") List.song_change_prev(msg.time);
|
||||
if(full_playlist.length > 0) {
|
||||
@@ -148,6 +151,20 @@ var List = {
|
||||
}
|
||||
},
|
||||
|
||||
changedValues: function(song) {
|
||||
var i = List.getIndexOfSong(song.id);
|
||||
full_playlist[i].title = song.title;
|
||||
full_playlist[i].duration = song.duration;
|
||||
full_playlist[i].start = song.start;
|
||||
full_playlist[i].end = song.end;
|
||||
|
||||
$("#" + song.id).find(".vote-container").attr("title", song.title);
|
||||
$("#" + song.id).find(".list-title").attr("title", song.title);
|
||||
$("#" + song.id).find(".list-title").text(song.title);
|
||||
var _temp_duration = Helper.secondsToOther(song.duration);
|
||||
$("#" + song.id).find(".card-duration").text(Helper.pad(_temp_duration[0]) + ":" + Helper.pad(_temp_duration[1]));
|
||||
},
|
||||
|
||||
insertAtBeginning: function(song_info, transition) {
|
||||
var display = List.page == 0 ? "" : "none";
|
||||
var add = List.generateSong(song_info, transition, false, true, false, display, false);
|
||||
|
||||
Reference in New Issue
Block a user