diff options
-rw-r--r-- | js/photo-tags.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/photo-tags.js b/js/photo-tags.js index 4b8d397..e577a15 100644 --- a/js/photo-tags.js +++ b/js/photo-tags.js @@ -89,8 +89,8 @@ function load_content() { .text( function(t) { return t.name; }) - .on("mouseover", function(d){ d3.select(this).classed("btn-danger",true)}) - .on("mouseout", function(d){ d3.select(this).classed("btn-danger",false)}) + .on("mouseover", function(d){ d3.select(this).classed("btn-success",true)}) + .on("mouseout", function(d){ d3.select(this).classed("btn-success",false)}) .on("click", function(d) { document.location.href=webbase+'/tag/'+d.name}); }); |