mirror of
https://github.com/StarWhiz/docker_deployment_notes
synced 2024-11-10 19:10:47 +00:00
13 lines
331 B
JavaScript
13 lines
331 B
JavaScript
|
$(document).ready(function(){
|
||
|
console.log('<%- config.webPageTitle %> : Attaching Socket.IO Handler')
|
||
|
$.webSocket = io({
|
||
|
transports: ['websocket']
|
||
|
})
|
||
|
$.webSocket.on('connect',function(d){
|
||
|
console.log('Websocket Connected')
|
||
|
})
|
||
|
$.webSocket.on('f',function(d){
|
||
|
console.log(d)
|
||
|
})
|
||
|
})
|