File: //var/www/delta/wp-content/plugins/sitepress-multilingual-cms/res/js/icl-admin-notifier.js
/* <![CDATA[*/
jQuery(function () {
    jQuery('.icl-admin-message-hide').on('click', function (event) {
        if (typeof (event.preventDefault) !== 'undefined') {
            event.preventDefault();
        } else {
            event.returnValue = false;
        }
        var messageBox = jQuery(this).closest('.otgs-is-dismissible');
        if (messageBox) {
			var messageID = messageBox.attr('id');
			jQuery.ajax({
										url:      ajaxurl,
										type:     'POST',
										data:     {
											action:                 'icl-hide-admin-message',
											'icl-admin-message-id': messageID,
											nonce:                  icl_admin_notifier_strings.iclHideAdminMessageNonce,
										},
										dataType: 'json',
										success:  function (ret) {
											if (ret && ret.text && typeof ret.text == 'string' && ret.text.length > 0) {
												messageBox.fadeOut('slow', function () {
													messageBox.removeAttr('class');
													if (ret.type) {
														messageBox.addClass(ret.type);
													}
													messageBox.html(ret.text);
													messageBox.fadeIn();
												});
											} else {
												messageBox.fadeOut(undefined, function () {
													messageBox.remove();
												});
											}
										},
									});
		}
	});
	// @deprecated, cannot find any place in project where this classname for event is used.
	// Probably can be safely removed in the future.
	jQuery('a.icl-admin-message-link').on('click', function (event) {
		if (typeof(event.preventDefault) !== 'undefined' ) {
			event.preventDefault();
		} else {
			event.returnValue = false;
		}
		jQuery.post(
			ajaxurl,
			{
				action: 'icl-hide-admin-message',
				'icl-admin-message-id': jQuery(this).parent().parent().attr('id'),
				nonce:                  icl_admin_notifier_strings.iclHideAdminMessageNonce,
			},
			function (response) {
			}
		);
	});
});
/*]]>*/