no return
This commit is contained in:
@@ -1,11 +1,13 @@
|
||||
// GLOBAL VARIABLES
|
||||
var is_pressure_test_ongoing = false;
|
||||
var rains_value = 0;
|
||||
var rains_loop_timing = 2000;
|
||||
|
||||
$(document).ready(function () {
|
||||
initSessionStorage();
|
||||
populateUIFromSessionStorage();
|
||||
|
||||
loopRainsSimulator();
|
||||
loop_rains_simulator();
|
||||
|
||||
// Sets the proper fixture name in the header and title
|
||||
var fixturename = "Robin iForte - Simulated";
|
||||
@@ -79,7 +81,7 @@ function toggleStandbyMode() {
|
||||
populateUIFromSessionStorage();
|
||||
}
|
||||
|
||||
function loopRainsSimulator() {
|
||||
function loop_rains_simulator() {
|
||||
var rains_tube_age = sessionStorage.getItem("iforte_demo_rains_age");
|
||||
var rains_lowest = sessionStorage.getItem("iforte_demo_rains_lowest");
|
||||
|
||||
@@ -105,8 +107,8 @@ function loopRainsSimulator() {
|
||||
|
||||
|
||||
setTimeout(() => {
|
||||
loopRainsSimulator();
|
||||
}, 1000);
|
||||
loop_rains_simulator();
|
||||
}, rains_loop_timing);
|
||||
}
|
||||
|
||||
function pressureTest() {
|
||||
|
||||
Reference in New Issue
Block a user