|
Lines 3-24
Link Here
|
| 3 |
[% INCLUDE 'doc-head-close.inc' %] |
3 |
[% INCLUDE 'doc-head-close.inc' %] |
| 4 |
<script type="text/javascript"> |
4 |
<script type="text/javascript"> |
| 5 |
//<![CDATA[ |
5 |
//<![CDATA[ |
| 6 |
|
|
|
| 7 |
$(document).ready(function() { |
6 |
$(document).ready(function() { |
| 8 |
$('#subfieldtabs').tabs(); |
7 |
$('#subfieldtabs').tabs(); |
| 9 |
}); |
8 |
}); |
| 10 |
|
|
|
| 11 |
function displayMoreConstraint(numlayer){ |
| 12 |
var thisdiv = document.getElementById(numlayer); |
| 13 |
if(thisdiv.getAttribute("class") == "content_hidden"){ |
| 14 |
thisdiv.removeAttribute('class'); |
| 15 |
thisdiv.setAttribute("class","content_visible"); |
| 16 |
} else { |
| 17 |
thisdiv.removeAttribute('class'); |
| 18 |
thisdiv.setAttribute("class","content_hidden"); |
| 19 |
} |
| 20 |
} |
| 21 |
|
| 22 |
//]]> |
9 |
//]]> |
| 23 |
</script> |
10 |
</script> |
| 24 |
</head> |
11 |
</head> |
| 25 |
- |
|
|