Skip to content

Commit 628a343

Browse files
AnkitSegmentpaco-walkmevaradarajan-twGhassenRjab
authored
[stage] stratconn-2841 (#782)
* [Walkme] Add option to choose a custom bucket (#759) * Add option to choose a custom bucket --------- Co-authored-by: Varadarajan V <[email protected]> Co-authored-by: Varadarajan V <[email protected]> * bump walkme integration version to 1.2.0 (#768) * fixes typo and related test (#771) * fixes typo and related test some test were returning false positive, update the way to check on them * bump package version to 1.2.1 --------- Co-authored-by: Varadarajan V <[email protected]> * Support for SystemJS in MadKudu integration (#765) * UMD need window.require * Update version * msg id and version updated * fixed walkme test case file * msg id added in productPropertyMap * removed msgId from propertyMap * added logs in track and page events --------- Co-authored-by: paco-walkme <[email protected]> Co-authored-by: Varadarajan V <[email protected]> Co-authored-by: Varadarajan V <[email protected]> Co-authored-by: Ghassen Rjab <[email protected]>
1 parent 967ad28 commit 628a343

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

integrations/pinterest-tag/lib/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ Pinterest.prototype.identify = function(identify) {
5353
};
5454

5555
Pinterest.prototype.page = function(page) {
56+
57+
console.log('Hello from page event');
5658
// If we have a category, the use ViewCategory. Otherwise, use a normal PageVisit.
5759
if (page.category()) {
5860
window.pintrk('track', 'ViewCategory', {
@@ -72,6 +74,7 @@ Pinterest.prototype.track = function(track) {
7274
var pinterestEvent = this.getPinterestEvent(segmentEvent);
7375
var pinterestObject = this.generatePropertiesObject(track);
7476

77+
console.log('Hello from track event');
7578
if (pinterestEvent) {
7679
window.pintrk('track', pinterestEvent, pinterestObject);
7780
} else {

0 commit comments

Comments
 (0)