CC-3675: Playlist -> the files from Disconnected Mediafolder can still

be previewed (played)

- done
This commit is contained in:
James 2012-04-24 12:59:07 -04:00
parent a41f100545
commit 3c4d01aa93
4 changed files with 23 additions and 10 deletions

View file

@ -114,7 +114,9 @@ function buildplaylist(p_url, p_playIndex) {
}
myPlaylist[index] = media;
_idToPostionLookUp[data[index]['element_id']] = data[index]['element_position'];
// we should create a map according to the new position in the player itself
// total is the index on the player
_idToPostionLookUp[data[index]['element_id']] = total;
total++;
}
@ -135,6 +137,9 @@ function buildplaylist(p_url, p_playIndex) {
*/
function play(p_playlistIndex){
playlistIndex = _idToPostionLookUp[p_playlistIndex];
if(playlistIndex == undefined){
playlistIndex = 0
}
//_playlist_jplayer.select(playlistIndex);
_playlist_jplayer.play(playlistIndex);
}