Merge branch 'develop' of github.com:martini/zammad into develop
This commit is contained in:
commit
cd71441956
1 changed files with 21 additions and 0 deletions
|
@ -45,6 +45,27 @@ do($ = window.jQuery, window) ->
|
||||||
input: @onInput
|
input: @onInput
|
||||||
).autoGrow { extraLine: false }
|
).autoGrow { extraLine: false }
|
||||||
|
|
||||||
|
if !window.WebSocket
|
||||||
|
console.log('no websockets available')
|
||||||
|
return
|
||||||
|
|
||||||
|
zammad_host = 'ws://localhost:6042'
|
||||||
|
@ws = new window.WebSocket(zammad_host)
|
||||||
|
console.log("connecting ws #{zammad_host}")
|
||||||
|
|
||||||
|
@ws.onopen = =>
|
||||||
|
console.log('ws connected')
|
||||||
|
|
||||||
|
@ws.onmessage = (e) =>
|
||||||
|
pipe = JSON.parse( e.data )
|
||||||
|
console.log 'debug', 'ws:onmessage', pipe
|
||||||
|
|
||||||
|
@ws.onclose = (e) =>
|
||||||
|
console.log 'debug', 'close websocket connection'
|
||||||
|
|
||||||
|
@ws.onerror = (e) =>
|
||||||
|
console.log 'debug', 'ws:onerror', e
|
||||||
|
|
||||||
checkForEnter: (event) =>
|
checkForEnter: (event) =>
|
||||||
if not event.shiftKey and event.keyCode is 13
|
if not event.shiftKey and event.keyCode is 13
|
||||||
event.preventDefault()
|
event.preventDefault()
|
||||||
|
|
Loading…
Reference in a new issue