Skip to content

tcastelli/meteor-schat-client-core

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

sChat client app for Meteor - core package

For more information about sChat see the documentation: https://www.simplechat.support/docs

Installing sChat box on Meteor App

$ meteor add schat:client-blaze

(schat:client-core will be also added)

For now there is only a package for Blaze view layer.

You also need to create account at https://www.simplechat.support Include sChatBox template:

<body>
    {{> sChatBox}}
</body>

Also, you’ll need to set up the configuration. Do it in the Meteor startup callback on the client side. See this example:

Meteor.startup(function () {
    sChat.init('JMSZtbT2RdNrPYYRi', {
        ssl: true,
        welcomeMessage: 'Hi, how can I help you?',
        hostName: 'SimpleChat.Support',
        labels: {
            sendPlaceholder: 'Send the message...',
            headerTitle: 'Welcome on my website!'
        }
    });
});

About

sChat client app for Meteor - core package

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%