Your IP : 13.58.254.160


Current Path : /home/bitrix/ext_www/klimatlend.ua/local/templates/climat_land/
Upload File :
Current File : /home/bitrix/ext_www/klimatlend.ua/local/templates/climat_land/glytics_actions.js

console.log("Analitic actions");

var dataShowed =  [];

$('.nav__link').mouseover(function() {
    var name = $(this).find('.main__nav__name').text();
    vievAction("menu","mouseover", name );

    if (dataShowed.indexOf(name) === -1 ){
        dataShowed.push(name);
        vievAction("product card","mouseover on buy",name);
    }

});


$('.comm__col__phone').mouseover(function() {
    vievAction("header","mouseover","phone");

});

$('.product__card').mouseover(function() {
    var prodName = $(this).find('.card__name').text();
    vievAction("sections","mouseover",prodName);

    if (dataShowed.indexOf(prodName) === -1 ){
        dataShowed.push(prodName);
        vievAction("product card","mouseover on buy",prodName);
    }


});

$('.button__type--2').mouseover(function() {
    var prodName = $('.product_name_card').text();

    if (dataShowed.indexOf(prodName) === -1 ){
        dataShowed.push(prodName);
        vievAction("product card","mouseover on buy",prodName);
    }

});