Create slider after app is initialized

This commit is contained in:
Piotr Sarnacki 2015-01-20 11:38:37 +01:00
parent 1323d2fca5
commit 69f06493fa
2 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,6 @@ unless window.TravisApplication
Travis.SshKey.url = "/settings/ssh_key"
Travis.SshKey.adapter = Travis.SshKeyAdapter.create()
@slider = new Travis.Slider()
@pusher = new Travis.Pusher(key: Travis.config.pusher_key, host: Travis.config.pusher_host) if Travis.config.pusher_key
@tailing = new Travis.Tailing($(window), '#tail', '#log')
@toTop = new Travis.ToTop($(window), '.to-top', '#log-container')
@ -149,6 +148,7 @@ unless window.TravisApplication
Em.run.later (-> element.remove()), 10
ready: ->
@slider = new Travis.Slider(@storage)
location.href = location.href.replace('#!/', '') if location.hash.slice(0, 2) == '#!'
currentDate: ->

View File

@ -1,5 +1,5 @@
@Travis.Slider = ->
@minimize() if Travis.storage.getItem('travis.maximized') == 'true'
@Travis.Slider = (storage) ->
@minimize() if storage.getItem('travis.maximized') == 'true'
this
$.extend Travis.Slider.prototype,