You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
620 B
18 lines
620 B
/* global woodmart_settings */
|
|
(function($) {
|
|
woodmartThemeModule.woocommerceNotices = function() {
|
|
var notices = '.woocommerce-error, .woocommerce-info, .woocommerce-message, div.wpcf7-response-output, #yith-wcwl-popup-message, .mc4wp-alert, .dokan-store-contact .alert-success, .yith_ywraq_add_item_product_message';
|
|
|
|
woodmartThemeModule.$body.on('click', notices, function() {
|
|
hideMessage($(this));
|
|
});
|
|
|
|
var hideMessage = function($msg) {
|
|
$msg.removeClass('shown-notice').addClass('hidden-notice');
|
|
};
|
|
};
|
|
|
|
$(document).ready(function() {
|
|
woodmartThemeModule.woocommerceNotices();
|
|
});
|
|
})(jQuery);
|
|
|