PluginProbe ʕ •ᴥ•ʔ
Simple Author Box / 2.52
Simple Author Box v2.52
trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.9 2.0 2.0.1 2.0.2 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2.0 2.2.1 2.2.2 2.3.0 2.3.1 2.3.11 2.3.12 2.3.15 2.3.16 2.3.2 2.3.20 2.3.21 2.3.22 2.4 2.41 2.42 2.45 2.46 2.47 2.48 2.49 2.50 2.51 2.52 2.54 2.55 2.56 2.57 2.59 2.60
simple-author-box / assets / js / sab-pointers.js
simple-author-box / assets / js Last commit date
sab-pointers.js 4 years ago sab-preview.js 3 years ago sab_gutenberg_editor_script.js 2 years ago sabox-admin.js 4 years ago sabox-editor.js 4 years ago sabox-picker.js 4 years ago sweetalert2.min.js 4 years ago webfont.js 3 years ago
sab-pointers.js
32 lines
1 /**
2 * SAB
3 * (c) WebFactory Ltd, 2016 - 2021
4 */
5
6 jQuery(document).ready(function($){
7 if (typeof sab_pointers != "undefined") {
8 $.each(sab_pointers, function (index, pointer) {
9 if (index.charAt(0) == "_") {
10 return true;
11 }
12 $(pointer.target)
13 .pointer({
14 content: "<h3>" + sab_pointers.plugin_name + "</h3><p>" + pointer.content + "</p>",
15 pointerWidth: 380,
16 position: {
17 edge: pointer.edge,
18 align: pointer.align,
19 },
20 close: function () {
21 $.get(ajaxurl, {
22 _ajax_nonce: sab_pointers._nonce_dismiss_pointer,
23 action: "sab_dismiss_pointer",
24 });
25 },
26 })
27 .pointer("open");
28 });
29 }
30
31 });
32