|
@@ -120,15 +120,15 @@ var Toolbar = (function (my) {
|
120
|
120
|
}
|
121
|
121
|
|
122
|
122
|
var conferenceName = roomUrl.substring(roomUrl.lastIndexOf('/') + 1);
|
123
|
|
- var subject = "Invitation to a Jitsi Meet (" + conferenceName + ")";
|
124
|
|
- var body = "Hey there, I%27d like to invite you to a Jitsi Meet" +
|
|
123
|
+ var subject = "Invitation to a " + interfaceConfig.APP_NAME + " (" + conferenceName + ")";
|
|
124
|
+ var body = "Hey there, I%27d like to invite you to a " + interfaceConfig.APP_NAME +
|
125
|
125
|
" conference I%27ve just set up.%0D%0A%0D%0A" +
|
126
|
126
|
"Please click on the following link in order" +
|
127
|
127
|
" to join the conference.%0D%0A%0D%0A" +
|
128
|
128
|
roomUrl +
|
129
|
129
|
"%0D%0A%0D%0A" +
|
130
|
130
|
sharedKeyText +
|
131
|
|
- "Note that Jitsi Meet is currently" +
|
|
131
|
+ "Note that " + interfaceConfig.APP_NAME + " is currently" +
|
132
|
132
|
" only supported by Chromium," +
|
133
|
133
|
" Google Chrome and Opera, so you need" +
|
134
|
134
|
" to be using one of these browsers.%0D%0A%0D%0A" +
|
|
@@ -138,6 +138,10 @@ var Toolbar = (function (my) {
|
138
|
138
|
body += "%0D%0A%0D%0A" + window.localStorage.displayname;
|
139
|
139
|
}
|
140
|
140
|
|
|
141
|
+ if (interfaceConfig.INVITATION_POWERED_BY) {
|
|
142
|
+ body += "%0D%0A%0D%0A--%0D%0Apowered by jitsi.org";
|
|
143
|
+ }
|
|
144
|
+
|
141
|
145
|
window.open("mailto:?subject=" + subject + "&body=" + body, '_blank');
|
142
|
146
|
}
|
143
|
147
|
|