do not create two Pusher instances

This commit is contained in:
Sven Fuchs 2014-10-13 17:20:02 +02:00
parent 1909c50647
commit bd4c0aa0a0
2 changed files with 2 additions and 3 deletions

View File

@ -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')

View File

@ -1,5 +1,5 @@
Travis.Pusher = (key) ->
@init(key) # if key
Travis.Pusher = (config) ->
@init(config)
this
$.extend Travis.Pusher,