Skip to content

Instantly share code, notes, and snippets.

@steepzero-old
Created October 12, 2017 10:51
Show Gist options
  • Save steepzero-old/64d7232fb5243f052fe9fb47c049872d to your computer and use it in GitHub Desktop.
Save steepzero-old/64d7232fb5243f052fe9fb47c049872d to your computer and use it in GitHub Desktop.
PhpDoc и JSDoc
/**
* При открытии формы «Заказать звонок»
* При успешной отправке формы «Заказать звонок»
* При отправке формы «Записаться на консультацию»
* При отправке заявки «Записаться на консультацию»
* @param eventAction
* @param eventCategory
*/
function gtm_myDataLayer(eventAction,eventCategory) {
dataLayer.push({
event:"UA gtm events",
eventCategory:eventCategory,
eventAction:eventAction
});
console.log(eventAction+' '+eventCategory);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment