|
Lines 186-197
Link Here
|
| 186 |
<script> |
186 |
<script> |
| 187 |
$(document).ready(function(){ |
187 |
$(document).ready(function(){ |
| 188 |
$(".level-option").show(); |
188 |
$(".level-option").show(); |
| 189 |
$("#cleartext").show(); |
|
|
| 190 |
$("#items").hide(); |
189 |
$("#items").hide(); |
| 191 |
$("#expiration-hint").hide(); |
190 |
$("#expiration-hint").hide(); |
| 192 |
$("#cleartext").click(function(){ |
|
|
| 193 |
$(this).siblings("input").val(""); |
| 194 |
}); |
| 195 |
$("#itemlevel").click(function(){ |
191 |
$("#itemlevel").click(function(){ |
| 196 |
if ( $("#itemlevel").is(':checked') ){ |
192 |
if ( $("#itemlevel").is(':checked') ){ |
| 197 |
$("#items").show(); |
193 |
$("#items").show(); |
| 198 |
- |
|
|