mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
A few small fixes.
This commit is contained in:
parent
cd61969475
commit
3f78071e5e
3 changed files with 4 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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()
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue