Lines 1237-1243
$(document).ready(function() {
Link Here
|
1237 |
if ( skipped_fields.indexOf( input_label ) != -1 ) { input_label=""; } |
1237 |
if ( skipped_fields.indexOf( input_label ) != -1 ) { input_label=""; } |
1238 |
if( qaddfields.indexOf( input_label ) != -1 || $(this).attr('class') == 'required' ){ |
1238 |
if( qaddfields.indexOf( input_label ) != -1 || $(this).attr('class') == 'required' ){ |
1239 |
$(this).parent().clone().appendTo("#quick_add_list"); |
1239 |
$(this).parent().clone().appendTo("#quick_add_list"); |
1240 |
if( input_label == 'password') $("#entryform label[for='password2']").parent().clone().appendTo("#quick_add_list"); |
1240 |
[% UNLESS mandatorypassword %] |
|
|
1241 |
if( input_label == 'password' ) $("#entryform label[for='password2']").parent().clone().appendTo("#quick_add_list"); |
1242 |
[% END %] |
1241 |
} |
1243 |
} |
1242 |
}); |
1244 |
}); |
1243 |
if( $("#memberentry_guarantor").length ) { |
1245 |
if( $("#memberentry_guarantor").length ) { |
1244 |
- |
|
|