annotate gnv/src/main/webapp/scripts/gnviewer.js @ 1004:a0d16ccb82ba

Render direct links as list. gnv/trunk@1214 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Tue, 15 Jun 2010 05:26:44 +0000
parents d2582f75b144
children
rev   line source
26
01e5ae4e7a12 Added existing JavaScripte-Code to the Project
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
1 function displayOverlay() {
01e5ae4e7a12 Added existing JavaScripte-Code to the Project
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
2 adjustOverlaySize();
01e5ae4e7a12 Added existing JavaScripte-Code to the Project
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
3 showDiv("overlay");
01e5ae4e7a12 Added existing JavaScripte-Code to the Project
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
4 showDiv("overlayContent");
01e5ae4e7a12 Added existing JavaScripte-Code to the Project
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
5 }
01e5ae4e7a12 Added existing JavaScripte-Code to the Project
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
6
01e5ae4e7a12 Added existing JavaScripte-Code to the Project
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
7 function adjustOverlaySize() {
01e5ae4e7a12 Added existing JavaScripte-Code to the Project
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
8 var lHeight = document.getElementById("page").scrollHeight;
01e5ae4e7a12 Added existing JavaScripte-Code to the Project
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
9 //alert(lHeight);
01e5ae4e7a12 Added existing JavaScripte-Code to the Project
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
10 var lOverlay = document.getElementById("overlay");
01e5ae4e7a12 Added existing JavaScripte-Code to the Project
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
11 lOverlay.style.height = lHeight + 'px';
01e5ae4e7a12 Added existing JavaScripte-Code to the Project
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
12 }
01e5ae4e7a12 Added existing JavaScripte-Code to the Project
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
13
01e5ae4e7a12 Added existing JavaScripte-Code to the Project
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
14 function showDiv(pName) {
01e5ae4e7a12 Added existing JavaScripte-Code to the Project
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
15 var el = document.getElementById(pName);
01e5ae4e7a12 Added existing JavaScripte-Code to the Project
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
16 el.style.visibility = (el.style.visibility == "visible") ? "hidden" : "visible";
697
d2582f75b144 Improved design and added new wms layers as background for 'Horizontalschnitte'.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 28
diff changeset
17 }

http://dive4elements.wald.intevation.org