new init-function

This commit is contained in:
Florian 2014-02-14 19:35:23 +01:00
parent f51686fe12
commit 70506cc35a
1 changed files with 7 additions and 3 deletions

View File

@ -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;