https://github.com/edenreich/javascript-supportchat-module
This nice simple chat depend on the socket.io libary
https://github.com/edenreich/javascript-supportchat-module
Last synced: 7 months ago
JSON representation
This nice simple chat depend on the socket.io libary
- Host: GitHub
- URL: https://github.com/edenreich/javascript-supportchat-module
- Owner: edenreich
- License: mit
- Created: 2017-03-25T14:31:33.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-03T15:43:54.000Z (over 8 years ago)
- Last Synced: 2025-01-16T16:42:59.700Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Support: SupportChat.js
Awesome Lists containing this project
README
# Javascript-SupportChat-Module
This nice simple chat will take advantage of the socket.io libary### Initialize the chat with your custom look on the client side
```javascript
new SupportChat({
title: 'Support Chat',
titleColor: '#ffffff',
background: '#009688',
event: '',
}).create();
```
## Or
### init it in another script and call on your chat instance create
```javascript
// could be done in different scripts for convinient.
var myChat = new SupportChat({
title: 'Support Chat',
titleColor: '#ffffff',
background: '#009688',
event: '',
})
```
And on the other script call:
```javascript
myChat.create();
```## Please note:
this chat-app is still in developing..so it's not yet fully functionally, if you wish to help get this going feel free to send me a pull request. thanks! :)