]> nos-oignons.net Git - website.git/blobdiff - assets/weights_graphs.js
Merge branch 'master' of ssh://bulbe.nos-oignons.net/website
[website.git] / assets / weights_graphs.js
index 7ed52dce990f09a11872bb7d776a6e1ac87b8ef4..1b949c59da95d2db9e2c83d429419c5e6fb17ff2 100644 (file)
@@ -41,7 +41,7 @@ WeightsDrawer.onionoo_url = "https://onionoo.torproject.org/weights?type=relay&c
 
 WeightsDrawer.periods = [
     { id: "1_month", label: L10n.t_1_month },
-    { id: "3_months", label: L10n.t_3_months },
+    { id: "6_months", label: L10n.t_6_months },
     { id: "1_year", label: L10n.t_1_year },
     { id: "5_years", label: L10n.t_5_years },
   ];
@@ -114,10 +114,10 @@ WeightsDrawer.prototype.draw_weights_graph = function(raw_data) {
     var radio = div.append("input")
       .attr("type", "radio")
       .attr("name", "period")
-      .attr("id", "period_" + p.id)
+      .attr("id", "weights_period_" + p.id)
       .on("click", function() { drawer.update_period(p.id); });
     div.append("label")
-      .attr("for", "period_" + p.id)
+      .attr("for", "weights_period_" + p.id)
       .text(p.label);
     if (p.id == WeightsDrawer.periods[0].id) {
       radio.attr("checked", true);