A few small fixes.

This commit is contained in:
Nick Winter 2015-02-02 11:50:25 -08:00
parent cd61969475
commit 3f78071e5e
3 changed files with 4 additions and 3 deletions

View file

@ -397,5 +397,6 @@ body.ipad
// This animation is slow and wigs out on iPad and very old computers.
.xp .pulse, .gems .pulse
@include animation(none)
body[lang='ru'] #hero-victory-modal #totals .total-wrapper .total-label
font-size: 12px
font-size: 12px

View file

@ -27,7 +27,7 @@ module.exports = class LadderPlayModal extends ModalView
constructor: (options, @level, @session, @team) ->
super(options)
@nameMap = {}
@otherTeam = if team is 'ogres' then 'humans' else 'ogres'
@otherTeam = if @team is 'ogres' then 'humans' else 'ogres'
@startLoadingChallengersMaybe()
@wizardType = ThangType.loadUniversalWizard()

View file

@ -206,7 +206,7 @@ module.exports = class TomeView extends CocoView
@spellTabView = spell.tabView
@$el.find('#' + @spellView.id).after(@spellView.el).remove()
@$el.find('#' + @spellTabView.id).after(@spellTabView.el).remove()
@castButton.attachTo @spellView
@castButton?.attachTo @spellView
Backbone.Mediator.publish 'tome:spell-shown', thang: thang, spell: spell
@updateSpellPalette thang, spell
@spellList.setThangAndSpell thang, spell