$(function() { function waitForFieldLoaded(ms) { return new Promise(resolve => setTimeout(resolve, 100)); } var submitted_contrib_type = '#submitted_contrib_type'; var form_group_submitted_for_tracks = '#form-group-submitted_for_tracks'; async function SetContrType(){ while(!$(submitted_contrib_type).length){ // await waitForFieldLoaded(); } if ($(submitted_contrib_type + ' option').length == 2) { $(submitted_contrib_type).val($(submitted_contrib_type + ' option:last').val()); } $(form_group_submitted_for_tracks).hide(); $('#form-group-wmd-input-f_description .form-label label').html('Describe your talk in one paragraph'); $('#form-group-person_links .form-label label').html('Speakers'); $('#form-group-attachments .form-label label').html('Upload your full proposal following the submission guidelines'); //$('#form-group-attachments').hide(); //$('#author-list-title-person_links').hide(); //$('#no-author-placeholder-person_links').hide(); //$('#author-list-person_links').hide(); $('#coauthor-list-title-person_links').hide(); $('#no-coauthor-placeholder-person_links').hide(); $('#form-group-custom_4').insertAfter($('#form-group-custom_4').parent().find('#form-group-wmd-input-f_description')); //$('.dropzone-previews').children().length; //hide speaker button and gear wheel var styles = '#author-list-person_links .person-row .person-buttons .icon-settings { display: none; } #author-list-person_links .person-row .person-roles { display: none; }'; var styleSheet = document.createElement('style'); styleSheet.innerText = styles; document.head.appendChild(styleSheet); } SetContrType(); //Reviewing async function HideReviewActions(){ while(!$('[id ^=track-][id $=-proposed_action]').length){ // await waitForFieldLoaded(); } $("[id ^=track-][id $=-proposed_action] option[value='change_tracks']").remove(); $("[id ^=track-][id $=-proposed_action] option[value='mark_as_duplicate']").remove(); $("[id ^=track-][id $=-proposed_action] option[value='merge']").remove(); } HideReviewActions(); $(document).on('submit', 'div.exclusivePopup form', function(e){ //e.preventDefault(); //return false; }); //submit $(document).on('click', 'div.exclusivePopup form input[type="submit"]', function(e){ if (!$('.dropzone-previews').children().length) { e.preventDefault(); alert('Upload your full proposal first!'); } //alert('prevent'); }); });