Quickstart
This Quickstart guide will help you get started with our JavaScript chat SDK quickly!
window.iflychatAsyncInit = function() {
// All iFlyChat related code should be defined here
/** iFlyChat Init function **/
iflychat.init({
userlist : {
visible: true
}
});
/** iFlyChat ready event **/
iflychat.on('ready', function() {
// Write your custom iFlyChat related code here
});
};Last updated