Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 712 Bytes

google-analytics.en.md

File metadata and controls

37 lines (29 loc) · 712 Bytes

google-analytics

Track event on Google Analytics.


NB client implementation of this block requires 'i-bem__dom' and 'jquery' from bem-core library. If you're going to use it, don't forget to include the bem-core to your project.


Usage:

  • by DOM-event
{
    block : 'block-to-track',
    mix : [
        { block : 'google-analytics', js : {
            info : ['user', 'start'],
            on : ['block-to-track', 'click'] // 0 - block name, 1 - event name
        }}
    ]
}
  • on js init
{
    block : 'block-to-track',
    mix : [
        { block : 'google-analytics', js : {
            info : ['user', 'start']
        }}
    ]
}