diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2018-01-07 17:24:16 -0500 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2018-01-07 17:24:16 -0500 |
| commit | 9c41352c661460f10d35c31292b5d80420b8fa9c (patch) | |
| tree | 35ef21c42750c65f53237369e0f441e86d89870a /www/js/EventServer.js | |
| parent | 92ea11058bf3ca356f09fabd5f6bc67ff63bdddb (diff) | |
#499 fixed onTap messing up event server URL and restore inconsistencies
Diffstat (limited to 'www/js/EventServer.js')
| -rw-r--r-- | www/js/EventServer.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/www/js/EventServer.js b/www/js/EventServer.js index 18dd482e..e3febfb6 100644 --- a/www/js/EventServer.js +++ b/www/js/EventServer.js @@ -347,6 +347,7 @@ angular.module('zmApp.controllers') return; } + console.log (">>>>>>>>>>>>>>>>>EVENT SERVER SENDING: type="+type+" DATA="+JSON.stringify(obj)); ws.send({ 'event':type, 'data': obj @@ -517,8 +518,8 @@ angular.module('zmApp.controllers') // load previous monlist and intlist // so we don't overwrite monstring = ld.eventServerMonitors; - intlist = ld.eventServerInterval; - NVRDataModel.debug ("loading saved monitor list and interval of "+monstring+">>"+intlist); + intstring = ld.eventServerInterval; + NVRDataModel.debug ("loading saved monitor list and interval of "+monstring+">>"+intstring); } |
