summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2011-11-26 22:53:13 -0800
committerArun Persaud <apersaud@lbl.gov>2011-11-26 22:53:13 -0800
commitb03d63d5006a71307d4f04b22170bdeddc8d8746 (patch)
treedd7b4c13848e679a8e7a3980716a66317d9310a0
parent2d429b7dd1457241e691e8a1e499c343a358668d (diff)
downloadphoto-tags-b03d63d5006a71307d4f04b22170bdeddc8d8746.tar.gz
photo-tags-b03d63d5006a71307d4f04b22170bdeddc8d8746.tar.bz2
photo-tags-b03d63d5006a71307d4f04b22170bdeddc8d8746.zip
don't show page index if there is only one page
-rw-r--r--index.php69
1 files changed, 36 insertions, 33 deletions
diff --git a/index.php b/index.php
index 4a7bdf4..5e93f62 100644
--- a/index.php
+++ b/index.php
@@ -84,49 +84,52 @@ function myreload(a) {
d3.json(url, function(json) {
/* update index, show only page +-5 pages max */
- s="page ";
n = Math.floor(json[0][0].total/N);
+ s = "";
- if(a>7)
+ if(n>1)
{
- s+=" <a href=\"<?php echo $webbase?>";
- if(T!="")
- s+="/tag/"+T;
- s+="/page/1\">1</a>...";
- start = a-5;
- }
- else
- start=1;
-
- for(i=start;i<=Math.min(n+1,a+5);i++)
- {
- if(i==a)
- s+= " "+i+" ";
- else
+ s="page ";
+
+ if(a>7)
{
s+=" <a href=\"<?php echo $webbase?>";
if(T!="")
s+="/tag/"+T;
- s+="/page/"+i+"\">"+i+"</a>";
+ s+="/page/1\">1</a>...";
+ start = a-5;
}
- }
-
- if(a+5<n)
- {
- s+="... <a href=\"<?php echo $webbase?>";
- if(T!="")
- s+="/tag/"+T;
- s+="/page/"+(n+1)+"\">"+(n+1)+"</a>";
- }
- else if(a+5==n)
- {
- s+=" <a href=\"<?php echo $webbase?>";
- if(T!="")
- s+="/tag/"+T;
- s+="/page/"+(n+1)+"\">"+(n+1)+"</a>";
- };
+ else
+ start=1;
+ for(i=start;i<=Math.min(n+1,a+5);i++)
+ {
+ if(i==a)
+ s+= " "+i+" ";
+ else
+ {
+ s+=" <a href=\"<?php echo $webbase?>";
+ if(T!="")
+ s+="/tag/"+T;
+ s+="/page/"+i+"\">"+i+"</a>";
+ }
+ }
+ if(a+5<n)
+ {
+ s+="... <a href=\"<?php echo $webbase?>";
+ if(T!="")
+ s+="/tag/"+T;
+ s+="/page/"+(n+1)+"\">"+(n+1)+"</a>";
+ }
+ else if(a+5==n)
+ {
+ s+=" <a href=\"<?php echo $webbase?>";
+ if(T!="")
+ s+="/tag/"+T;
+ s+="/page/"+(n+1)+"\">"+(n+1)+"</a>";
+ };
+ };
d3.select(".index").html(s);
/* update pics */