Fixed bug with trying to show challenger modals with no hash to indicate we should.

This commit is contained in:
Nick Winter 2014-03-09 11:52:05 -07:00
parent 03abbc44cb
commit 34983059aa

View file

@ -67,7 +67,7 @@ module.exports = class LadderView extends RootView
@insertSubView(@myMatchesTab = new MyMatchesTabView({}, @level, @sessions))
@refreshInterval = setInterval(@fetchSessionsAndRefreshViews.bind(@), 10000)
hash = document.location.hash[1..] if document.location.hash
unless hash in ['my-matches', 'simulate', 'ladder']
if hash and not (hash in ['my-matches', 'simulate', 'ladder'])
@showPlayModal(hash) if @sessions.loaded
fetchSessionsAndRefreshViews: ->