Skip to content

Instantly share code, notes, and snippets.

@davidtruchet
Created August 3, 2016 20:26
Show Gist options
  • Save davidtruchet/1815024c61d0d3f5a4fa2175fb40b9e0 to your computer and use it in GitHub Desktop.
Save davidtruchet/1815024c61d0d3f5a4fa2175fb40b9e0 to your computer and use it in GitHub Desktop.
,'do_tagging_comparison_add': function (product) {
// safely handle global objects and nested data lookups
if (_.isUndefined( window.fossilTrack ) ){
// break out
return;
}
// do tag
window.fossilTrack('compare_addition', {
site: {
'productID': product.code,
'name': product.name,
'brand':'fossil',
'inventory':product.inventory,
'sku':product.sku
},
checkout: {
type: 'paypal',
paypalLocation: ['cart']
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment