small whitespace cleanup
authorArun Persaud <arun@nubati.net>
Sat, 10 Nov 2012 21:23:05 +0000 (13:23 -0800)
committerArun Persaud <arun@nubati.net>
Sat, 10 Nov 2012 21:23:05 +0000 (13:23 -0800)
js/photo-tags.js

index e41272fd57e9bb4a4415a151321a2d8446411aa8..8db5df9e9f2feb06c06e5c5c2dac2ff6ac089440 100644 (file)
@@ -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+" "; })
       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});
     });
 }
 
     });
 }