diff options
author | Arun Persaud <arun@nubati.net> | 2012-11-10 13:23:05 -0800 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2012-11-10 13:23:05 -0800 |
commit | fe48c6f458c5990692b68c2538d680385d768402 (patch) | |
tree | deea7b9a2d27e444e368b7308629fae744db06e7 | |
parent | d7acf9450bd2b064160d8794a49e1608efe74bb2 (diff) | |
download | photo-tags-fe48c6f458c5990692b68c2538d680385d768402.tar.gz photo-tags-fe48c6f458c5990692b68c2538d680385d768402.tar.bz2 photo-tags-fe48c6f458c5990692b68c2538d680385d768402.zip |
small whitespace cleanup
-rw-r--r-- | js/photo-tags.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/photo-tags.js b/js/photo-tags.js index e41272f..8db5df9 100644 --- a/js/photo-tags.js +++ b/js/photo-tags.js @@ -147,9 +147,9 @@ function tagcloud() { svgelement.selectAll("text").data(json).enter().append("text") .style("font-size", function(d){return (Math.log(d.count+1)/3.0+0.5)+"em"}) .text(function(d) { return d.name+" "; }) - .on("mouseover", function(d){ d3.select(this).style("color","red")} ) - .on("mouseout", function(d){ d3.select(this).style("color","black")} ) - .on("click", function(d) { document.location.href=webbase+'/tag/'+d.name }) + .on("mouseover", function(d){ d3.select(this).style("color","red") }) + .on("mouseout", function(d){ d3.select(this).style("color","black")}) + .on("click", function(d) { document.location.href=webbase+'/tag/'+d.name}); }); } |