diff --git a/templates/videojs.html b/templates/videojs.html index 9627b11..6d585b2 100644 --- a/templates/videojs.html +++ b/templates/videojs.html @@ -83,13 +83,13 @@ $.getJSON('_IPNSL_history.json', function (json) { }); }); $.getJSON('_IPNSL_history._CHANNEL_.json', function (json) { - $('#videosList').pagination({ + $('#videosChan').pagination({ dataSource: json.Videos, - pageSize: 1, + pageSize: 3, callback: function(data, pagination) { - var wrapper = $('#videosList .wrapper').empty(); + var wrapper = $('#videosChan .wrapper').empty(); $.each(data, function (i, f) { - $('#videosList .wrapper').append(''); + $('#videosChan .wrapper').append(''); }); } });