mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-26 05:53:39 -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
|
||||
$flags-width: 200px
|
||||
width: 90%
|
||||
width: -webkit-calc(100% - $flags-width)
|
||||
width: calc(100% - $flags-width)
|
||||
width: -webkit-calc(100% - 200px)
|
||||
width: calc(100% - 200px)
|
||||
left: $flags-width
|
||||
#code-area, #thang-hud, #goals-view
|
||||
display: none
|
||||
|
|
|
@ -337,7 +337,7 @@ module.exports = class InventoryModal extends ModalView
|
|||
@$el.find("##{showExtra}-item-viewed").removeClass('secret')
|
||||
|
||||
hideItemDetails: ->
|
||||
@itemDetailsView.setItem(null)
|
||||
@itemDetailsView?.setItem(null)
|
||||
@$el.find('#item-details-extra > *').addClass('secret')
|
||||
|
||||
getCurrentEquipmentConfig: ->
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue