Skip to content
Snippets Groups Projects
Commit 33a139e4 authored by Dónal Murray's avatar Dónal Murray
Browse files

Replace airway_pressure with pressure_patient in WebUI plots

parent 2db18105
Branches
No related merge requests found
......@@ -31,7 +31,7 @@ function init_results(){
var seconds = data[i]["timestamp"]/1000;
if (i==data.length-1) timestamp = seconds;
if ( seconds == "" ) continue;
initial_yaxis_var1.push({x : seconds, y : data[i]["airway_pressure"]});
initial_yaxis_var1.push({x : seconds, y : data[i]["pressure_patient"]});
initial_yaxis_var2.push({x : seconds, y : data[i]["volume"]});
}
//reverse because data is read from the other way
......@@ -217,7 +217,7 @@ $(document).ready(function() {
}
}
});
requestDataVar1("airway_pressure", "volume");
requestDataVar1("pressure_patient", "volume");
});
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment