You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After I refresh/load the page I can see a 3 sec delay untill the select object will be styled properly. Image describes what i mean.
Why did you close ? This is your plugin issue because if i type - alert("sss") in the first line of select2.js it will show alert immediately without any delay. So don't say it's happening because of my files.
Maybe someone had similar problem, leave it for now please.
I'll give more details soon
Fixed:
meta-box.js
There is no call for _metabox_fields.init(); before - window.setTimeout('_metabox_fields.init();',2000); // 170 line
Solution:
Delete 169 and 170 line - lack of this step will result in another issue for repeater block (toggle)
After I refresh/load the page I can see a 3 sec delay untill the select object will be styled properly. Image describes what i mean.
Why did you close ? This is your plugin issue because if i type - alert("sss") in the first line of select2.js it will show alert immediately without any delay. So don't say it's happening because of my files.
Maybe someone had similar problem, leave it for now please.
I'll give more details soon
Fixed:
meta-box.js
There is no call for _metabox_fields.init(); before - window.setTimeout('_metabox_fields.init();',2000); // 170 line
Solution:
//call object init in delay
window.setTimeout('_metabox_fields.init();',2000);
The text was updated successfully, but these errors were encountered: