Есть код вплывающей формы, сейчас она работает при выходе посетителя с сайта. Что нужно изменить, чтобы она всплывала сразу при первом посещении пользователем сайта?
(function ($) {
'use strict';
g1.popup = function () {
var
HTMLBase = $('html'),
Popup = $('.g1-popup-newsletter'),
PopupCookie = g1.readCookie('g1_popup_disabled'),
PopupCloser = $('.g1-popup-base, .g1-popup-closer');
// If we dont have popup exit.
if (PopupCookie) {
HTMLBase.addClass('exit-intent-disabled');
}
if (Popup.length <= 0) {
return;
}
$(document).on('mouseleave', function (e) {
if (e.clientY < 10 && !HTMLBase.hasClass('exit-intent-disabled') && !HTMLBase.hasClass('g1-slideup-visible')) {
HTMLBase.addClass('g1-popup-visible').addClass('exit-intent-disabled');
}
});
PopupCloser.on('click', function (e) {
e.preventDefault();
HTMLBase.removeClass('g1-popup-visible');
g1.createCookie('g1_popup_disabled', 1, 24 * 60 * 60 * 1000);
});
};