//GLOBALS var shown = false; function initLeads() { $(document).ready(function () { $('#new-lead').on("click", function () { shown ? $(this).hideBalloon() : $(this).showBalloon(); shown = !shown; }).showBalloon({ position: 'right', html: true, css: { color: 'black' }, contents: `
` }); $('#new-lead').hideBalloon(); // shown = !shown; $(document).mouseup(function (e) { var container = $("#new-lead"); // if the target of the click isn't the container nor a descendant of the container if (!container.is(e.target) && container.has(e.target).length === 0) { container.hideBalloon(); shown = false; } }); $('#company-filter').select2({ placeholder: "Company", allowClear: true }) $('#dealer-filter').select2({ placeholder: "Dealer", allowClear: true }) $('#lead-status-filter').select2({ placeholder: "Status", allowClear: true }) //for click bnalloon not hiding -> filter $(document).on("click", '.dropdown-filter', function (event) { event.stopPropagation(); }); }); }