show and hide file content of scheduled items.

This commit is contained in:
naomiaro 2011-01-13 23:44:36 -05:00
parent 37c96d3695
commit a4fb54cd01
3 changed files with 23 additions and 15 deletions

View file

@ -219,11 +219,20 @@ function makeScheduleDialog(dialog, json, show) {
$("#schedule_playlist_chosen")
.empty()
.append(json.chosen);
.append(json.chosen)
.find("li")
.click(function(){
$(this).find(".group_list").toggle();
});
});
}
});
dialog.find("#schedule_playlist_chosen li")
.click(function(){
$(this).find(".group_list").toggle();
});
}
function openScheduleDialog(show) {