do not create two Pusher instances
This commit is contained in:
parent
1909c50647
commit
bd4c0aa0a0
|
@ -44,7 +44,6 @@ unless window.TravisApplication
|
|||
|
||||
@slider = new Travis.Slider()
|
||||
@pusher = new Travis.Pusher(key: Travis.config.pusher_key, host: Travis.config.pusher_host) if Travis.config.pusher_key
|
||||
@pusher = new Travis.Pusher(Travis.config.pusher_key) if Travis.config.pusher_key
|
||||
@tailing = new Travis.Tailing($(window), '#tail', '#log')
|
||||
@toTop = new Travis.ToTop($(window), '.to-top', '#log-container')
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
Travis.Pusher = (key) ->
|
||||
@init(key) # if key
|
||||
Travis.Pusher = (config) ->
|
||||
@init(config)
|
||||
this
|
||||
|
||||
$.extend Travis.Pusher,
|
||||
|
|
Loading…
Reference in New Issue
Block a user