From: Arun Persaud Date: Fri, 22 Feb 2013 07:02:43 +0000 (-0800) Subject: better display of description and time for a single photo X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=photo-tags.git;a=commitdiff_plain;h=HEAD better display of description and time for a single photo --- diff --git a/js/photo-tags.js b/js/photo-tags.js index 9ec4d25..ce4ee49 100644 --- a/js/photo-tags.js +++ b/js/photo-tags.js @@ -96,9 +96,9 @@ function load_content() { .text(function(d) { var date = new Date(d.time*1000); if (d.description=="") - return "Time: "+date.toUTCString(); + return " "+date.toUTCString(); else - return "Description: "+d.description + "Time: "+date.toUTCString(); + return " "+d.description + " "+date.toUTCString(); }); /* show tags */ d3.json(webbase+"/getjson.php?IDT="+ID, function(jsontag) {