Lines 37-43
Link Here
|
37 |
|
37 |
|
38 |
function clear_entry(node) { |
38 |
function clear_entry(node) { |
39 |
var original = node.parentNode.parentNode; |
39 |
var original = node.parentNode.parentNode; |
40 |
$("input[type=text]", original).attr('value', ''); |
40 |
$("textarea", original).attr('value', ''); |
41 |
$("select", original).attr('value', ''); |
41 |
$("select", original).attr('value', ''); |
42 |
} |
42 |
} |
43 |
|
43 |
|
Lines 1381-1391
Link Here
|
1381 |
</select> |
1381 |
</select> |
1382 |
[% ELSE %] |
1382 |
[% ELSE %] |
1383 |
[% IF ( opduplicate ) %] |
1383 |
[% IF ( opduplicate ) %] |
1384 |
<input type="text" maxlength="255" value="[% patron_attribute.value %]" |
1384 |
<textarea rows="2" cols="30" id="[% patron_attribute.form_id %]" name="[% patron_attribute.form_id %]" onclick="this.value=''" >[% patron_attribute.value %]</textarea> |
1385 |
id="[% patron_attribute.form_id %]" name="[% patron_attribute.form_id %]" onclick="this.value=''" /> |
|
|
1386 |
[% ELSE %] |
1385 |
[% ELSE %] |
1387 |
<input type="text" maxlength="255" value="[% patron_attribute.value %]" |
1386 |
<textarea rows="2" cols="30" id="[% patron_attribute.form_id %]" name="[% patron_attribute.form_id %]">[% patron_attribute.value %]</textarea> |
1388 |
id="[% patron_attribute.form_id %]" name="[% patron_attribute.form_id %]" /> |
|
|
1389 |
[% END %] |
1387 |
[% END %] |
1390 |
[% END %] |
1388 |
[% END %] |
1391 |
[% IF ( patron_attribute.password_allowed ) %] |
1389 |
[% IF ( patron_attribute.password_allowed ) %] |
1392 |
- |
|
|