stephenharris / Event-Organiser

WordPress plug-in, Event Organiser, development repository
http://wordpress.org/extend/plugins/event-organiser/
GNU General Public License v3.0
100 stars 76 forks source link

Update deprecated zIndex() function #500

Closed brianjohnhanna closed 3 years ago

brianjohnhanna commented 3 years ago

In WP 5.6, jQuery UI was updated to 1.12.1, dropping support for the zIndex() function. See #499 for more information.

While the recommended approach is to replace this function using stacking elements, the affected code in this plugin can just as easily be replaced with the .css('zIndex') function since the original zIndex() function was just an abstraction method for the same. This is documented here: https://api.jqueryui.com/1.12/zIndex/

stephenharris commented 3 years ago

Thank you for the PR @brianjohnhanna