X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=www%2Fjsdemo%2Fexample_client.js;h=8342494859d9a2a72b9ef965f1ace4272a5dd87c;hb=4aa368ef32545c581183ea8de5ef92980351b850;hp=6c931573677f8d5050c850f093ea92f8b39a0a9b;hpb=555ce40e9d956821e2976288405937761bc7aac4;p=pazpar2-moved-to-github.git diff --git a/www/jsdemo/example_client.js b/www/jsdemo/example_client.js index 6c93157..8342494 100644 --- a/www/jsdemo/example_client.js +++ b/www/jsdemo/example_client.js @@ -1,5 +1,4 @@ /* A very simple client that shows a basic usage of the pz2.js -** $Id: example_client.js,v 1.6 2008-01-15 13:59:18 jakub Exp $ */ // create a parameters array and pass it to the pz2's constructor @@ -14,7 +13,7 @@ if (document.location.hash == '#useproxy') { showResponseType = 'json'; } -my_paz = new pz2( { "onshow": my_onshow, +var my_paz = new pz2( { "onshow": my_onshow, "showtime": 500, //each timer (show, stat, term, bytarget) can be specified this way "pazpar2path": pazpar2path, "oninit": my_oninit, @@ -246,7 +245,7 @@ function drawPager (pagerDiv) var prev = '<< Prev | '; if (curPage > 1) - var prev = ' | '; var middle = ''; @@ -261,14 +260,14 @@ function drawPager (pagerDiv) var next = ' | Next >>'; if (pages - curPage > 0) - var next = ' | '; - predots = ''; + var predots = ''; if (firstClkbl > 1) predots = '...'; - postdots = ''; + var postdots = ''; if (lastClkbl < pages) postdots = '...';