From fb90d6335a6d4fb1d20fb50c4a70eadbe52422a4 Mon Sep 17 00:00:00 2001 From: fred Date: Fri, 8 Apr 2022 18:41:26 +0200 Subject: [PATCH] videosChan --- templates/videojs.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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(''); }); } });