PluginProbe
GutSlider – All in One Slider and Carousel Blocks for Gutenberg / 2.3.0
GutSlider – All in One Slider and Carousel Blocks for Gutenberg v2.3.0
3.1.0 3.0.0 2.13.2 2.13.1 2.13.0 trunk 1.0.0 2.1.0 2.10.0 2.10.1 2.11.0 2.11.1 2.11.2 2.11.3 2.11.4 2.12.0 2.2.1 2.2.2 2.3.0 2.4.0 2.5.1 2.5.3 2.5.4 2.5.5 2.6.1 All 56 releases
slider-blocks / admin / notice / notice.js

notice.js in GutSlider – All in One Slider and Carousel Blocks for Gutenberg 2.3.0, at admin/notice/notice.js

15 lines 331 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* eslint-disable no-undef */
2 const gutSliderNotice = jQuery('.gutslider-notice');
3
4 jQuery(document).on('click', '#gutslider_notice', function () {
5 jQuery.ajax({
6 url: ajaxurl,
7 data: {
8 action: 'dismiss_gutslider_admin_notice'
9 }
10 });
11
12 // Hide the notice
13 gutSliderNotice.hide();
14 });
15