/** * Main JS File * * @author Your Inspiration Themes * @package YITH Newsletter Popup * @version 1.0.0 */ jQuery(document).ready(function($) { $('body').yith_popup({ content : $('.yith-popup-container').html() }); $('body').on('close.yith-popup', function(){ /* Da eliminare serve solo per i test */ if ($(this).is('#yithhider_yith-popup')) { console.log('Cliccato : yithhider_yith-popup') }else if ($(this).is('body')){ console.log('Cliccato body') }else{ console.log('Cliccato : altro') } if ($('input.no-view').is(':checked')) { $.cookie(templateDir, '1',{ expires: 365, path: '/' }) } $('#yithhider_yith-popup').on('click',function(){ $.cookie(templateDir, '1',{ expires: 365, path: '/' }) }); }); $('#yith-popup-newsletter-form_yith-popup').submit(function(e){ $.cookie(templateDir, '1',{ expires: 365, path: '/' }); }); $('#yithhider_yith-popup').on('click', function(){ $.cookie(templateDir, '1',{ expires: 365, path: '/' }); }); });