diff --git a/js/cctv-control.js b/js/cctv-control.js index 75dc5cf..0dfd1d0 100644 --- a/js/cctv-control.js +++ b/js/cctv-control.js @@ -21,7 +21,7 @@ var formActive = false; window.onDomReady = initReady; //change from testbild to default cam when DOM is ready -window.onDomReady(changeCam); +window.onDomReady(initViewer); function initReady(fn) { if(document.addEventListener) { @@ -29,11 +29,15 @@ function initReady(fn) { } } +//hide the form, and switch on camera +function initViewer() { + document.getElementById('form').style.visibility = "hidden"; + changeCam(); + } + //change currently displayed camera to the one in cam variable function changeCam() { - document.getElementById('form').style.visibility = "hidden"; - var display = document.getElementById('screen'); if (cam <= 7 && cam >= 0) { camDisplay = cam + 1;