Created
October 12, 2017 10:51
-
-
Save steepzero-old/64d7232fb5243f052fe9fb47c049872d to your computer and use it in GitHub Desktop.
PhpDoc и JSDoc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* При открытии формы «Заказать звонок» | |
* При успешной отправке формы «Заказать звонок» | |
* При отправке формы «Записаться на консультацию» | |
* При отправке заявки «Записаться на консультацию» | |
* @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