



/* ------------- 
content start - webinarsChange
------------- */

$(function () {
	setTimeout(function () {
		const link = window.location.pathname;
		if (link.indexOf(`/pl/webinar/show`) > -1) {
			$('.dropdown-menu[role="menu"]').css({
				"right": "auto",
				"left": "0"
			});
		};

		$('.webinar-btn-send').off().click(function (e) {
			if ($('.new-comment-input').attr('disabled')) {
				return false;
			}

			window.webinarComments.addMessage({
				text: $('.new-comment-input').val()
			});
			$('.new-comment-input').val('');
			e.preventDefault();
		});
	});
});
/* ------------- 
content finish - webinarsChange
------------- */
