Test for song import

This commit is contained in:
Nicolas A. Tonne
2015-04-30 16:47:52 +02:00
parent 3277569863
commit 8ee05b874f
4 changed files with 23 additions and 4 deletions

View File

@@ -14,10 +14,9 @@ function getCookie(cname) {
function populate_channels(lists)
{
var output = "";
var num = 0;
lists.sort(sortFunction);
pre_card = $(list_html);
for(x in lists)
@@ -45,6 +44,8 @@ function populate_channels(lists)
console.log(chan);
output+="<option value='"+chan+"'> ";
num++;
if(num>19)break;
}
document.getElementById("searches").innerHTML = output;
}