Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a11smiles/c8d03f901a86c17230c0e024e4221545 to your computer and use it in GitHub Desktop.
Save a11smiles/c8d03f901a86c17230c0e024e4221545 to your computer and use it in GitHub Desktop.
import { Component, OnInit } from '@angular/core';
declare var ga: any;
@Component({
selector: 'app-first-page',
templateUrl: './first-page.component.html',
styleUrls: ['./first-page.component.scss']
})
export class FirstPageComponent implements OnInit {
private _clickCnt = 0;
ngOnInit() {
}
click() {
ga('send', {
hitType: 'event',
eventCategory: 'Button',
eventAction: 'click',
eventLabel: 'First Page',
eventValue: ++this._clickCnt
});
console.log(`Button clicked ${this._clickCnt} times.`);
console.log('Click for "First Page" sent!');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment