|
Server : Apache System : Linux webm011.cluster126.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : alfamiffjq ( 77889) PHP Version : 8.2.31 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Directory : /home/alfamiffjq/www/alfamifwp/wp-content/plugins/maintenance/wf-flyout/ | |
|
Path: /home/alfamiffjq/www/alfamifwp/wp-content/plugins/maintenance/wf-flyout/wf-flyout.js
Size: 551 B
Permissions: 0644
/**
* Universal fly-out menu for WebFactory plugins
* (c) WebFactory Ltd, 2022
*/
jQuery(document).ready(function ($) {
$('#wff-button').on('click', function (e) {
e.preventDefault();
$('#wf-flyout').toggleClass('opened');
$('#wff-overlay').toggle();
return false;
}); // open/close menu
$('#wff-overlay').on('click', function (e) {
e.preventDefault();
$(this).hide();
$('#wf-flyout').removeClass('opened');
return false;
}); // click on overlay - hide menu
}); // jQuery ready