File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,8 @@ export interface PixelEventProperties {
55
55
56
56
/**
57
57
* The currency for the `value` specified.
58
- * @see {@link https://developers.facebook.com/docs/marketing-api/currencies }
58
+ *
59
+ * See {@link https://developers.facebook.com/docs/marketing-api/currencies Facebook Pixel docs - currency codes}
59
60
*/
60
61
currency ?:
61
62
'AED' | 'ARS' | 'AUD' |
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export class PixelModule {
12
12
13
13
constructor ( private pixel : PixelService ) {
14
14
if ( ! PixelModule . config ) {
15
- throw Error ( 'ngx-pixel not configured correctly' ) ;
15
+ throw Error ( 'ngx-pixel not configured correctly. Pass the `pixelId` property to the `forRoot()` function ' ) ;
16
16
}
17
17
if ( PixelModule . config . enabled ) {
18
18
this . pixel . initialize ( ) ;
Original file line number Diff line number Diff line change @@ -50,7 +50,8 @@ export class PixelService {
50
50
51
51
/**
52
52
* Track a Standard Event as predefined by Facebook
53
- * @see {@link https://developers.facebook.com/docs/facebook-pixel/reference }
53
+ *
54
+ * See {@link https://developers.facebook.com/docs/facebook-pixel/reference Facebook Pixel docs - reference}
54
55
* @param eventName The name of the event that is being tracked
55
56
* @param properties Optional properties of the event
56
57
*/
@@ -69,7 +70,8 @@ export class PixelService {
69
70
70
71
/**
71
72
* Track a custom Event
72
- * @see {@link https://developers.facebook.com/docs/facebook-pixel/implementation/conversion-tracking#custom-conversions }
73
+ *
74
+ * See {@link https://developers.facebook.com/docs/facebook-pixel/implementation/conversion-tracking#custom-conversions Facebook Pixel docs - custom conversions}
73
75
* @param eventName The name of the event that is being tracked
74
76
* @param properties Optional properties of the event
75
77
*/
You can’t perform that action at this time.
0 commit comments