projects
/
website.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6feb0cb
)
Correction d'une erreur de syntaxe dans bw_graphs.js
author
jvoisin
<julien.voisin@dustri.org>
Mon, 28 Aug 2023 20:27:36 +0000
(22:27 +0200)
committer
jvoisin
<julien.voisin@dustri.org>
Mon, 28 Aug 2023 20:27:56 +0000
(22:27 +0200)
assets/bw_graphs.js
patch
|
blob
|
history
diff --git
a/assets/bw_graphs.js
b/assets/bw_graphs.js
index 3efacbbb8559edad9e5352fe9abe3b5cc2e66f43..2c93b4c677b04ae614500dfe7423dcf2b15a7855 100644
(file)
--- a/
assets/bw_graphs.js
+++ b/
assets/bw_graphs.js
@@
-161,7
+161,7
@@
BwDrawer.draw_bandwidth_graph = function(raw_data, selector, period) {
.attr("d", function(d) { return BwDrawer.area(d.write_values); })
.style("fill", function(d) { return BwDrawer.color(d.fingerprint); });
- update_period = function(period) {
+
var
update_period = function(period) {
BwDrawer.x.domain([bw_data[period].minTime, bw_data[period].maxTime]);
var t = svg.transition().duration(300);
t.select(".x.axis").call(BwDrawer.xAxis);