/** * Created by Proxymis on 10/04/2017. */ jQuery(document).ready(function($) { if ($(window).width() < 768) { function setToggle(btn, content, toggle) { var qBtn = $(btn); var qContent = $(content); qContent.slideUp(); qBtn.click(function(event) { $(this).toggleClass(toggle); if ($(this).hasClass(toggle)) { qContent.slideDown(); } else { qContent.slideUp(); } }); } setToggle('.custom-xs-header__toggle', '.header__content', 'custom-xs_open'); } else { if ($('#chatContainer').length > 0 && $('#swfContainer').length > 0) { Split(['#swfContainer', '#chatContainer'], { sizes: [65, 35], minSize: 440 }); } } });