Mercurial > dive4elements > gnv-client
comparison gnv/src/main/webapp/WEB-INF/jsp/mainlayout.jsp @ 695:883b366e3b15
Replaced buttons for saving/loading projects with links.
gnv/trunk@926 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Tue, 13 Apr 2010 17:22:49 +0000 |
parents | 271ec4d11a9f |
children | d2582f75b144 |
comparison
equal
deleted
inserted
replaced
694:271ec4d11a9f | 695:883b366e3b15 |
---|---|
48 | 48 |
49 if (ele != null) { | 49 if (ele != null) { |
50 ele.checked = false; | 50 ele.checked = false; |
51 } | 51 } |
52 } | 52 } |
53 | |
54 function toggle(element) { | |
55 var ele = document.getElementById(element); | |
56 console.log("Element: " + ele.style.visibility); | |
57 var vis = ele.style.visibility; | |
58 if (vis != "visible") { | |
59 ele.style.visibility = "visible"; | |
60 } | |
61 else { | |
62 ele.style.visibility = "hidden"; | |
63 } | |
64 } | |
53 </script> | 65 </script> |
54 </head> | 66 </head> |
55 | 67 |
56 <body id="gnviewerbody"> | 68 <body id="gnviewerbody"> |
57 <div id="overlay"></div> | 69 <div id="overlay"></div> |