summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAlib <aliboba@free.fr>2010-03-17 14:57:37 +0100
committerAlib <aliboba@free.fr>2010-03-17 14:57:37 +0100
commit478709641e55c9050f60c62e478c5d5279970efd (patch)
treed05c063eb9b63ff493fe1db7a738e0d07c700447 /js
parent281c41400b062da65dad78209cf9c858d46c4c0c (diff)
downloadistreamdev-478709641e55c9050f60c62e478c5d5279970efd.tar.gz
istreamdev-478709641e55c9050f60c62e478c5d5279970efd.tar.bz2
added runningsession json
Diffstat (limited to 'js')
-rw-r--r--js/istreamdev.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/js/istreamdev.js b/js/istreamdev.js
index 2000c83..53963bc 100644
--- a/js/istreamdev.js
+++ b/js/istreamdev.js
@@ -175,7 +175,10 @@ function gen_channels(category) {
$.each(data.channel,function(i,channel){
$("#chan_menu").append('<li class="channellist"><a class="chan_but" href="#"><img src="logos/' + channel.name + '.png"/><small class="counter">' + channel.number + '</small><span class="name">' + channel.name + '</span><span class="comment">' + channel.now_title + '</span></a></li>');
});
- json_complete('#channels','slide');
+ $("#chan_menu li:last a img").load(function () {
+
+ json_complete('#channels','cube');
+ });
})
}