asset-manager
5 years ago
dashboard-widgets
6 months ago
metaboxes
1 week ago
settings
4 months ago
stats
1 week ago
templates
1 week ago
addons-list.php
1 week ago
admin-footer.php
2 months ago
admin-head.php
2 years ago
edit-store-profile.php
5 years ago
iconfinder.php
2 years ago
page-header.php
6 months ago
settings.php
6 months ago
stats.php
6 months ago
welcome.php
6 months ago
admin-head.php
20 lines
| 1 | <?php |
| 2 | if(!defined('ABSPATH')) die('Dream more!'); |
| 3 | ?><script type="text/javascript"> |
| 4 | var wpdmConfig = { |
| 5 | siteURL: '<?php echo site_url(); ?>' |
| 6 | }; |
| 7 | jQuery(function () { |
| 8 | |
| 9 | |
| 10 | jQuery('#TB_closeWindowButton').click(function () { |
| 11 | tb_remove(); |
| 12 | }); |
| 13 | |
| 14 | jQuery('body').on('click', '#wpdmvnotice .notice-dismiss', function (){ |
| 15 | jQuery.post(ajaxurl, {action: 'wpdm_remove_admin_notice', __rnnonce: '<?php echo wp_create_nonce(WPDM_PUB_NONCE) ?>'}); |
| 16 | }); |
| 17 | |
| 18 | }); |
| 19 | </script> |
| 20 |