pwkip / contact-form-7-conditional-fields

Wordpress Plugin: Contact Form 7 Conditional Fields
http://bdwm.be/wpcf7cf
22 stars 18 forks source link

Use recommended way to initialize admin script #110

Closed hirasso closed 1 year ago

hirasso commented 1 year ago

Hi there! First of all, thank you for your work on this plugin! ❤️

Today I noticed that on one of my sites the scripts inside scripts_admin.js had stopped working. While switching to a default theme seemed to solve the issue, I still think the plugin needs an update here. The issue is that the current $(document).on('ready', ... isn't being fired. I changed it to the officially supported form of

jQuery(document).ready(function() {});

That solved the issue nicely, everything started to work again.