check-point.js
487 Bytes
var sendInfo = function(eventName) {
var yas = window._yas;
var channel = window.cookie('_Channel');
var channelMap = {
boys: 1,
girls: 2,
kids: 3,
lifestyle: 4
};
var param;
channel = channelMap[channel] || 1;
param = JSON.stringify({C_ID: channel});
if (yas && yas.sendCustomInfo) {
yas.sendCustomInfo({
op: eventName,
param: param
}, true);
}
};
module.exports = sendInfo;