'
),
init: function () {
var inst = this,
selectors = inst.linkSelectors.join(', ');
$(document).on('click', selectors, function (e) {
if ($(this).hasClass('fancy-disclaimer_link--proceed')) return true;
var proceedLink = $(this).attr('href');
e.preventDefault(); // stop the link from directing the browser
e.stopPropagation(); // avoid conflict with document tracking script
$.fancybox.open(inst.template, {
touch: false, // optional to disable swipe
clickSlide: false, // optional to disable close when clicking outside the popup
clickContent: false, // optional to disable close when clicking inside the popup
afterLoad: function () {
$('.fancy-disclaimer_link--proceed').attr('href', proceedLink);*/
/* $('.fancy-disclaimer_link').one('click', function (ev) {
if ($(this).is('.fancy-disclaimer_link--close')) {
ev.preventDefault();
}
$.fancybox.close();
}); */
/* }
});
});
}
}
q4Disclaimer.init();*/