print button closes form

This commit is contained in:
Florian 2014-02-14 19:45:17 +01:00
parent 70506cc35a
commit 7e5443f922
2 changed files with 3 additions and 2 deletions

View File

@ -30,7 +30,7 @@
</textarea>
<p>
<a href="#" id='printButton'>&nbsp</a>
<a href="#" id='printButton' onclick='printForm()'>&nbsp</a>
</p>
</div>

View File

@ -11,7 +11,6 @@
//
// This Software is licensed under the GPL Version 3, 29 June 2007
var cam = 0;
var camHost = "127.0.0.1:8080";
var controlHost = "127.0.0.1:8080";
@ -23,6 +22,7 @@ window.onDomReady = initReady;
//change from testbild to default cam when DOM is ready
window.onDomReady(initViewer);
function initReady(fn) {
if(document.addEventListener) {
document.addEventListener("DOMContentLoaded", fn, false);
@ -122,6 +122,7 @@ function showImage() {
function printForm() {
document.getElementById("form").style.visibility = 'hidden';
formActive = false;
changeCam();
}