mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-05-01 16:33:38 -04:00
Fixed an error I saw in Errorception, and a Sass problem I saw in Webkit.
This commit is contained in:
parent
bba78970ea
commit
477ebb3c48
2 changed files with 3 additions and 3 deletions
app
|
@ -33,8 +33,8 @@ $level-resize-transition-time: 0.5s
|
||||||
#playback-view
|
#playback-view
|
||||||
$flags-width: 200px
|
$flags-width: 200px
|
||||||
width: 90%
|
width: 90%
|
||||||
width: -webkit-calc(100% - $flags-width)
|
width: -webkit-calc(100% - 200px)
|
||||||
width: calc(100% - $flags-width)
|
width: calc(100% - 200px)
|
||||||
left: $flags-width
|
left: $flags-width
|
||||||
#code-area, #thang-hud, #goals-view
|
#code-area, #thang-hud, #goals-view
|
||||||
display: none
|
display: none
|
||||||
|
|
|
@ -337,7 +337,7 @@ module.exports = class InventoryModal extends ModalView
|
||||||
@$el.find("##{showExtra}-item-viewed").removeClass('secret')
|
@$el.find("##{showExtra}-item-viewed").removeClass('secret')
|
||||||
|
|
||||||
hideItemDetails: ->
|
hideItemDetails: ->
|
||||||
@itemDetailsView.setItem(null)
|
@itemDetailsView?.setItem(null)
|
||||||
@$el.find('#item-details-extra > *').addClass('secret')
|
@$el.find('#item-details-extra > *').addClass('secret')
|
||||||
|
|
||||||
getCurrentEquipmentConfig: ->
|
getCurrentEquipmentConfig: ->
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue