From 0016cfb185872b6de1050f542e7c6b8e20e20f77 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sat, 17 Nov 2012 15:09:14 -0800 Subject: [PATCH] some code cleanup --- js/photo-tags.js | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/js/photo-tags.js b/js/photo-tags.js index e577a15..2b21eb5 100644 --- a/js/photo-tags.js +++ b/js/photo-tags.js @@ -143,16 +143,9 @@ function next_page() { update_page_index(); } -function prev_pic() { -} - -function next_pic() { -} - function load_pic(myid) { ID=myid; update_page_index(); - update_thumbnails(); load_content(); } @@ -218,12 +211,13 @@ function update_thumbnails(){ /* resort elements */ d3.select(".nextprev").select("ul").selectAll("li").sort(function(a,b){return a.id-b.id;}); - d3.select(".nextprev").select("ul").selectAll("li").select("a").select("img").classed("current",function(d){return (d.id==IDcurr);}); + d3.select(".nextprev").select("ul").selectAll("li").select("a").select("img") + .classed("current",function(d){return (d.id==IDcurr);}); /* add links for left/right arrows */ if (IDprev != -1 ) - d3.select(".left").on("click", function() { load_pic(IDprev); }); + d3.select(".left" ).on("click", function() { load_pic(IDprev); }); if (IDnext != -1 ) d3.select(".right").on("click", function() { load_pic(IDnext); }); -- 2.25.1