Skip to content

Commit

Permalink
- fix for trackMultiProductsPurchaseEventWithCustomDimensionValues m…
Browse files Browse the repository at this point in the history
…ethod (now GoogleAnalytics.Tracker calls trackMultiProductsPurchaseEventWithCustomDimensionValues method of GoogleAnalyticsBridge in trackMultiProductsPurchaseEventWithCustomDimensionValues method)
  • Loading branch information
malaman committed Dec 6, 2016
1 parent 5365c85 commit 96c1349
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GoogleAnalyticsTracker.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export class GoogleAnalyticsTracker {
*/
trackMultiProductsPurchaseEventWithCustomDimensionValues(products = [], transaction = {}, eventCategory = "Ecommerce", eventAction = "Purchase", customDimensions) {
const formattedCustomDimensions = this.transformCustomDimensionsFieldsToIndexes(customDimensions);
GoogleAnalyticsBridge.trackMultiProductsPurchaseEvent(this.id, products, transaction, eventCategory, eventAction, formattedCustomDimensions);
GoogleAnalyticsBridge.trackMultiProductsPurchaseEventWithCustomDimensionValues(this.id, products, transaction, eventCategory, eventAction, formattedCustomDimensions);
}

/**
Expand Down

0 comments on commit 96c1349

Please sign in to comment.