PluginProbe ʕ •ᴥ•ʔ
Custom Post Type Permalinks / 3.1.5
Custom Post Type Permalinks v3.1.5
1.2.0 1.3.0 1.3.1 1.4.0 1.5.1 1.5.2 1.5.4 2.0.0 2.0.1 2.0.2 2.1.1 2.1.2 2.1.3 2.2.0 3.0.0 3.0.1 3.1.0 3.1.1 3.1.3 3.1.4 3.1.5 3.2.0 3.2.1 3.2.2 3.3.0 3.3.1 3.3.4 3.3.5 3.4.0 3.4.0-rc.1 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.5.2 3.5.3 3.5.4 3.5.5 trunk 0.6 0.6.1 0.6.2 0.7 0.7.1 0.7.10 0.7.2 0.7.2.1 0.7.3 0.7.3.1 0.7.4 0.7.4.1 0.7.5 0.7.5.1 0.7.5.2 0.7.5.6 0.7.6 0.7.8 0.7.9 0.7.9.1 0.7.9.2 0.8 0.8.1 0.8.6 0.8.7 0.8.7.1 0.8.7.5 0.8.7.6 0.9 0.9.1 0.9.2.1 0.9.3.1 0.9.3.2 0.9.3.3 0.9.5 0.9.5.1 0.9.5.2 0.9.5.3 0.9.5.4 0.9.5.6 0.9.6 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0
custom-post-type-permalinks / assets / settings-pointer.js
custom-post-type-permalinks / assets Last commit date
settings-pointer.js 9 years ago
settings-pointer.js
22 lines
1 (function ($) {
2
3 $(function () {
4
5 if( window.CPTP_Settings_Pointer ) {
6 $("#menu-settings .wp-has-submenu").pointer({
7 content: CPTP_Settings_Pointer.content,
8 position: {"edge": "left", "align": "center"},
9 close: function () {
10 $.post('admin-ajax.php', {
11 action: 'dismiss-wp-pointer',
12 pointer: CPTP_Settings_Pointer.name
13 })
14
15 }
16 }).pointer("open");
17 }
18
19 })
20
21 })(jQuery);
22