diff options
Diffstat (limited to 'js/istreamdev.js')
-rw-r--r-- | js/istreamdev.js | 5 |
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');
+ });
})
}
|