Track whether the user has richtext mode enabled
This commit is contained in:
parent
794bf820cc
commit
e121440d05
2 changed files with 9 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue