<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* global jQuery:false */
/* global WINDSOR_STORAGE:false */

jQuery(document).on('action.ready', windsor_js_composer_init);
jQuery(document).on('action.init_shortcodes', windsor_js_composer_init);
jQuery(document).on('action.init_hidden_elements', windsor_js_composer_init);

function windsor_js_composer_init(e, container) {
	"use strict";
	if (arguments.length &lt; 2) var container = jQuery('body');
	if (container===undefined || container.length === undefined || container.length == 0) return;

	container.find('.vc_message_box_closeable:not(.inited)').addClass('inited').on('click', function(e) {
		"use strict";
		jQuery(this).fadeOut();
		e.preventDefault();
		return false;
	});
}</pre></body></html>