| Server IP : 51.91.236.193 / Your IP : 216.73.216.224 Web Server : Apache System : Linux webm010.cluster128.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 : institutah ( 16501) PHP Version : 7.2.34 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/institutah/www/wp-content/plugins/security_1747912549/js/ |
Upload File : |
/*
* EPS 301 Redirects
* Backend GUI pointers
* (c) WebFactory Ltd
*/
jQuery(document).ready(function($){
if (typeof eps_pointers == 'undefined') {
return;
}
$.each(eps_pointers, function(index, pointer) {
if (index.charAt(0) == '_') {
return true;
}
$(pointer.target).pointer({
content: '<h3>301 Redirects</h3><p>' + pointer.content + '</p>',
position: {
edge: pointer.edge,
align: pointer.align
},
width: 320,
close: function() {
$.post(ajaxurl, {
pointer_name: index,
_ajax_nonce: eps_pointers._nonce_dismiss_pointer,
action: 'eps_dismiss_pointer'
});
}
}).pointer('open');
});
});