feat(analytics): Implement sendFeedback method
This commit is contained in:
parent
4ffe013165
commit
71790b07b7
|
@ -19,5 +19,9 @@
|
|||
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;
|
||||
}(window));
|
||||
}(window));
|
||||
|
|
Loading…
Reference in New Issue