1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-05 23:10:41 +03:00

Track whether the user has richtext mode enabled

This commit is contained in:
Luke Barnard
2017-08-09 18:39:06 +01:00
parent 794bf820cc
commit e121440d05
2 changed files with 9 additions and 0 deletions

View File

@@ -31,6 +31,7 @@ const customVariables = {
'User Type': 3,
'Chosen Language': 4,
'Instance': 5,
'RTE: Uses Richtext Mode': 6,
};
@@ -145,6 +146,11 @@ class Analytics {
if (this.disabled) return;
this._setVisitVariable('User Type', guest ? 'Guest' : 'Logged In');
}
setRichtextMode(state) {
if (this.disabled) return;
this._setVisitVariable('RTE: Uses Richtext Mode', state ? 'on' : 'off');
}
}
if (!global.mxAnalytics) {