HEX
Server: Apache
System: Windows NT MAGNETO-ARM 10.0 build 22000 (Windows 10) AMD64
User: Michel (0)
PHP: 7.4.7
Disabled: NONE
Upload Files
File: C:/Apache24/htdocs/wp-content/plugins/star-addons-for-elementor/includes/js/admin.js
(function($) {
	'use strict';

    $(".notice.star-addons-theme-notice.first-notice button.button-secondary").on("click", function(){
	    $(".notice.star-addons-theme-notice.first-notice").slideUp();
    });

    $(".notice.star-addons-theme-notice.second-notice button.button-secondary").on("click", function(){
	    $(".notice.star-addons-theme-notice.second-notice").slideUp();
    });

    $('.notice.star-addons-theme-notice.first-notice button.button-secondary').click(function() {
        $.cookie('StarAddonsFirstNotice', 'A cookie for StarAddonsFirstNotice', { expires: 180 });
	});

    if ($.cookie('StarAddonsFirstNotice')) {
        $('.notice.star-addons-theme-notice.first-notice').css('display', 'none');
    }

    $('.notice.star-addons-theme-notice.second-notice button.button-secondary').click(function() {
        $.cookie('StarAddonsSecondNotice', 'A cookie for StarAddonsSecondNotice', { expires: 180 });
	});

    if ($.cookie('StarAddonsSecondNotice')) {
        $('.notice.star-addons-theme-notice.second-notice').css('display', 'none');
    }

})(jQuery);