PluginProbe
EmbedPress – PDF Embedder, 3D PDF FlipBook, Google Reviews, YouTube Videos, Upload & Embed PDF documents / 2.7.0
EmbedPress – PDF Embedder, 3D PDF FlipBook, Google Reviews, YouTube Videos, Upload & Embed PDF documents v2.7.0
4.6.5 4.6.4 4.6.3 4.6.2 4.6.1 4.6.0 4.5.6 4.5.5 4.5.4 4.5.3 4.5.2 trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.3.0 1.3.1 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 All 189 releases
embedpress / assets / js / admin.js

admin.js in EmbedPress – PDF Embedder, 3D PDF FlipBook, Google Reviews, YouTube Videos, Upload & Embed PDF documents 2.7.0, at assets/js/admin.js

23 lines 620 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * @package EmbedPress
3 * @author EmbedPress <help@embedpress.com>
4 * @copyright Copyright (C) 2018 EmbedPress. All rights reserved.
5 * @license GPLv2 or later
6 * @since 1.7.0
7 */
8 (function ($) {
9 'use strict';
10 //alert(EMBEDPRESS_ADMIN_PARAMS.ajaxurl);
11
12 $(document).on('click', '.embedpress-plugin-notice-dismissible.is-dismissible', function () {
13 var data = {
14 action: 'embedpress_notice_dismiss',
15 security: EMBEDPRESS_ADMIN_PARAMS.nonce,
16 };
17
18 $.post(EMBEDPRESS_ADMIN_PARAMS.ajaxurl, data, function () {
19
20 });
21 });
22 })(jQuery);
23