You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// make sure clientId isn't YOU so you don't display info about yourself:
1318
1319
varmyClientId=TogetherJS.clientId();
1319
1320
if(msg.clientId!=myClientId){
1320
-
this.chatbotPostMsg('Someone just joined this session.');
1321
+
//this.chatbotPostMsg('Someone just joined this session.');
1322
+
1323
+
// 2019-04-01: display a more dire warning about server load:
1324
+
if(this.meCreatedThisSession()){
1325
+
this.chatbotPostMsg('Someone just joined. The server may get slow or crash if too many users join. Use button at top to *make your session private* so nobody else can join.');
1326
+
}else{
1327
+
this.chatbotPostMsg('Someone just joined. The server may get slow or crash if too many users join.');
1328
+
}
1321
1329
}
1322
1330
});
1323
1331
@@ -1723,7 +1731,7 @@ Get live help!
1723
1731
$("#requestHelpBtn").hide();
1724
1732
1725
1733
// 2019-03-26: display a more prominent warning here:
1726
-
this.chatbotPostMsg('This service is NOT being actively maintained, so it may crash at any time. It is available for free with no technical support. Please do not contact the site owner to make any feature requests.');
1734
+
this.chatbotPostMsg('This service is NOT being maintained, so it may crash any time and lose your code. It is available for free with no technical support. Do not contact the site owner to make any feature requests.');
1727
1735
}else{
1728
1736
alert("ERROR in getting live help. This isn't working at the moment. Please try again later.");
0 commit comments