From 934b08cc9a0d761c2ae7f8b7c184c9367d46e2c9 Mon Sep 17 00:00:00 2001 From: cklewar Date: Tue, 10 Apr 2018 02:05:56 +0200 Subject: [PATCH] - update ageOutTimer --- ui/index.html | 2 +- ui/ui.js | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ui/index.html b/ui/index.html index 185b3d2..227cb27 100644 --- a/ui/index.html +++ b/ui/index.html @@ -170,7 +170,7 @@

Monitoring BGP Flow
- +

diff --git a/ui/ui.js b/ui/ui.js index 2ccf3b5..bd1acaa 100644 --- a/ui/ui.js +++ b/ui/ui.js @@ -20,7 +20,7 @@ */ var pollInterval = 5000; // 1000 = 1 second, 3000 = 3 seconds -var ageOutInterval = "00:03:00" //H:M:S +var ageOutInterval = "0:03:00" //H:M:S $(document).ready(function () { @@ -506,6 +506,7 @@ function saveSettingsBtnEventHandler(){ data.password = $('#inputDevPassword').val(); data.ip = $('#inputDevIP').val(); data.age_out_interval = $('#inputAgeOutInterval').val(); + ageOutInterval = $('#inputAgeOutInterval').val(); pollInterval = $('#inputPollInterval').val(); saveSettings(data);