File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44 if ( src == 'holder' ) {
55 checked = document . form1 . hold_contact_is_submitter . checked ;
66 if ( checked ) {
7- document . form1 . ietf_contact_is_submitter . checked = false ;
7+ if ( document . form1 . ietf_contact_is_submitter )
8+ document . form1 . ietf_contact_is_submitter . checked = false ;
89 document . form1 . subm_name . value = document . form1 . hold_name . value ;
910 document . form1 . subm_title . value = document . form1 . hold_title . value ;
1011 document . form1 . subm_department . value = document . form1 . hold_department . value ;
2627 } else if ( src == 'ietf' ) {
2728 checked = document . form1 . ietf_contact_is_submitter . checked ;
2829 if ( checked ) {
29- document . form1 . hold_contact_is_submitter . checked = false ;
30+ if ( document . form1 . hold_contact_is_submitter )
31+ document . form1 . hold_contact_is_submitter . checked = false ;
3032 document . form1 . subm_name . value = document . form1 . ietf_name . value ;
3133 document . form1 . subm_title . value = document . form1 . ietf_title . value ;
3234 document . form1 . subm_department . value = document . form1 . ietf_department . value ;
You can’t perform that action at this time.
0 commit comments