Merge pull request #967 from jitsi/analytics_feedback
feat(analytics): Implement sendFeedback method
This commit is contained in:
commit
98bc16801c
|
@ -19,5 +19,9 @@
|
||||||
action + '.' + browserName, label ? label : "", value ? value : null);
|
action + '.' + browserName, label ? label : "", value ? value : null);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Analytics.prototype.sendFeedback = function (data, label, browserName) {
|
||||||
|
this.sendEvent('feedback.rating', data.overall, label, browserName);
|
||||||
|
};
|
||||||
|
|
||||||
ctx.Analytics = Analytics;
|
ctx.Analytics = Analytics;
|
||||||
}(window));
|
}(window));
|
||||||
|
|
Loading…
Reference in New Issue