-
Notifications
You must be signed in to change notification settings - Fork 88
Closed
Labels
bugThis label could be used to identify issues that are caused by a defect in the product.This label could be used to identify issues that are caused by a defect in the product.releasedIndicate that an issue has been resolved and released in a particular version of the product.Indicate that an issue has been resolved and released in a particular version of the product.
Description
Description:
We use
jQuery( window ).load( function () {
jQuery.neveMetabox.init();
} );
in /assets/js/src/metabox.js
jQuery(window).load was deprecated in 1.8, and removed in jquery 3.0 and we should probably use it as an "Event Handler Attachment":
jQuery( window ).on("load", function() {
jQuery.neveMetabox.init();
});
Reference:
Technical info
- WordPress version: 5.5.1
- Theme version: 2.8.2
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugThis label could be used to identify issues that are caused by a defect in the product.This label could be used to identify issues that are caused by a defect in the product.releasedIndicate that an issue has been resolved and released in a particular version of the product.Indicate that an issue has been resolved and released in a particular version of the product.