funkjedi / acf-qtranslate

Adds qTranslate compatible fields for Text, Text Area, Wysiwyg Editor and Image.
http://wordpress.org/plugins/acf-qtranslate/
57 stars 32 forks source link

jQuery 1.12.4 default WP vs 3.x #129

Open rg- opened 5 years ago

rg- commented 5 years ago

Hi, using WP 5.0.3, by defualt it enqueue jQuery 1.12.4 since my site uses Bootstrap 4, i need jQuery 3.3.1, but using that i recive an error related to deprecated (window).load, here:

/plugins/acf-qtranslate/assets/acf_5/qtranslatex.js

jQuery(window).load(function() {.... line 5)

If i change that for:

jQuery(window).on('load',function() {

Then there´s no error, and by the way i´ve tested on both jQuery versions, 1.12.4 and 3.3.1, function fired, no error.

Yes i know is not the best to change the jQuery version included on WP, but sometimes that´s not posible.