X-Git-Url: https://nos-oignons.net/gitweb/website.git/blobdiff_plain/3c424d37cc1c861916564a407d0818d95379c237..0efe48d6ce1a320d9d6efc6ded47f5a62d0b655d:/assets/bw_graphs.js

diff --git a/assets/bw_graphs.js b/assets/bw_graphs.js
index 900e126..b6147b6 100644
--- a/assets/bw_graphs.js
+++ b/assets/bw_graphs.js
@@ -40,8 +40,6 @@ BwDrawer.write_stack = d3.layout.stack()
 BwDrawer.onionoo_url = "https://onionoo.torproject.org/bandwidth?type=relay&contact=adminsys@nos-oignons.net";
 
 BwDrawer.periods = [
-    { id: "3_days", label: L10n.t_3_days },
-    { id: "1_week", label: L10n.t_1_week },
     { id: "1_month", label: L10n.t_1_month },
     { id: "3_months", label: L10n.t_3_months },
     { id: "1_year", label: L10n.t_1_year },
@@ -108,7 +106,7 @@ BwDrawer.draw_bandwidth_graph = function(raw_data, selector, period) {
       return d['read_history'][period] && BwDrawer.parseTime(d['read_history'][period].first) &&
              d['write_history'][period] && BwDrawer.parseTime(d['write_history'][period].first);
     });
-    var maxTime = d3.max(raw_data.relays, function(d) {
+    var maxTime = d3.min(raw_data.relays, function(d) {
       return d['read_history'][period] && BwDrawer.parseTime(d['read_history'][period].last) &&
              d['write_history'][period] && BwDrawer.parseTime(d['write_history'][period].last);
     });