side playlist looks good.

This commit is contained in:
naomiaro 2011-01-16 23:43:12 -05:00
parent 9b4f9c8aa4
commit 7cf55e0201
6 changed files with 59 additions and 17 deletions

View file

@ -35,7 +35,7 @@ function openCueEditor(event) {
var pos, url, li;
li = $(this).parent();
li = $(this).parent().parent();
pos = li.attr("id").split("_").pop();
url = '/Playlist/set-cue/format/json';
url = url + '/pos/' + pos;
@ -90,7 +90,7 @@ function deleteSPLItem(event){
event.stopPropagation();
pos = $(this).parent().attr("id").split("_").pop();
pos = $(this).parent().parent().attr("id").split("_").pop();
url = '/Playlist/delete-item/format/json';
url = url + '/pos/' + pos;