This commit is contained in:
Dan Seripap 2016-01-08 12:53:17 -05:00
parent ef75e594c1
commit 3def874398
2 changed files with 16 additions and 1 deletions

View File

@ -222,10 +222,15 @@ $(function() {
socket.on('login', function (data) {
connected = true;
// Display the welcome message
var message = "FattyChat - Anonomous Chat";
var message = "Fatty.chat - Anonomous Chat";
log(message, {
prepend: true
});
message = "Chatrooms are destroyed after all participants exit. Chat history is not persistent and not saved.";
log(message);
addParticipantsMessage(data);
});

View File

@ -21,5 +21,15 @@
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script src="/main.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-72169154-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>