PluginProbe ʕ •ᴥ•ʔ
Advanced Google reCAPTCHA / 5.40
Advanced Google reCAPTCHA v5.40
5.40 5.39 trunk 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.18 1.19 1.20 1.21 1.22 1.23 1.24 1.25 1.26 1.27 1.28 1.29 1.30 1.31 1.32 1.33 1.34 1.35
advanced-google-recaptcha / js / wpcaptcha-pointers.js
advanced-google-recaptcha / js Last commit date
chart.min.js 2 years ago jquery.dataTables.min.js 2 years ago moment.min.js 2 years ago sweetalert2.min.js 2 years ago tooltipster.bundle.min.js 2 years ago wpcaptcha-pointers.js 4 months ago wpcaptcha.js 4 months ago
wpcaptcha-pointers.js
34 lines
1 /**
2 * WP Captcha
3 * Backend GUI pointers
4 * (c) WebFactory Ltd, 2022 - 2026, www.webfactoryltd.com
5 */
6
7 jQuery(document).ready(function($){
8 if (typeof wpcaptcha_pointers == 'undefined') {
9 return;
10 }
11
12 $.each(wpcaptcha_pointers, function(index, pointer) {
13 if (index.charAt(0) == '_') {
14 return true;
15 }
16 $(pointer.target).pointer({
17 content: '<h3>WP Captcha</h3><p>' + pointer.content + '</p>',
18 pointerWidth: 380,
19 position: {
20 edge: pointer.edge,
21 align: pointer.align
22 },
23 close: function() {
24 $.get(ajaxurl, {
25 action: "wpcaptcha_run_tool",
26 tool: "wpcaptcha_dismiss_pointer",
27 notice_name: index,
28 _ajax_nonce: wpcaptcha_pointers.run_tool_nonce
29 });
30 }
31 }).pointer('open');
32 });
33 });
34