Linux webm012.cluster126.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
/
home
/
ferronnery
/
www
/
wp-content
/
plugins
/
login-lockdown
/
js
/
/home/ferronnery/www/wp-content/plugins/login-lockdown/js/loginlockdown-global.js
/** * Login Lockdown * https://wploginlockdown.com/ * (c) WebFactory Ltd, 2022 - 2026, www.webfactoryltd.com */ // global object for all Login Lockdown functions jQuery(document).ready(function ($) { if (typeof loginlockdown_pointers != "undefined") { $.each(loginlockdown_pointers, function (index, pointer) { if (index.charAt(0) == "_") { return true; } $(pointer.target) .pointer({ content: "<h3>Login Lockdown</h3><p>" + pointer.content + "</p>", pointerWidth: 380, position: { edge: pointer.edge, align: pointer.align, }, close: function () { $.get(ajaxurl, { action: "loginlockdown_run_tool", _ajax_nonce: loginlockdown_pointers.run_tool_nonce, tool: "loginlockdown_dismiss_pointer", }); }, }) .pointer("open"); }); } }); // on ready