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 |