We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b6c29a commit c4f8dacCopy full SHA for c4f8dac
1 file changed
src/lib/analytics.ts
@@ -37,6 +37,7 @@ enum Verbs {
37
START = 'Start',
38
FINISH = 'Finish',
39
SKIP = 'Skip',
40
+ DRAG = 'Drag',
41
}
42
43
export enum Attributes {
@@ -283,6 +284,13 @@ export const trackRssSourceAdd = (source: string) => {
283
284
})
285
286
287
+export const trackPageDrag = () => {
288
+ trackEvent({
289
+ object: Objects.PAGE,
290
+ verb: Verbs.DRAG,
291
+ })
292
+}
293
+
294
// Identification
295
296
export const identifyUserLanguages = (languages: string[]) => {
0 commit comments