mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-03 00:32:14 -04:00
Make dead dudes look deader. Eagerly destroy ThangListEntryView popovers, Highlander-style. Announce eternal brunch.
This commit is contained in:
parent
11a4c1b6fd
commit
0469c918db
3 changed files with 30 additions and 1 deletions
app
bin
|
@ -7,9 +7,26 @@
|
|||
box-sizing: border-box
|
||||
width: 20%
|
||||
max-width: 100px
|
||||
position: relative
|
||||
|
||||
&.dead
|
||||
@include opacity(0.50)
|
||||
@include opacity(0.75)
|
||||
|
||||
&:after
|
||||
content: "×"
|
||||
font-size: 160px
|
||||
color: red
|
||||
@include opacity(0.75)
|
||||
position: absolute
|
||||
bottom: 0
|
||||
height: 100%
|
||||
width: 100%
|
||||
text-align: center
|
||||
line-height: 100px
|
||||
font-family: monospace
|
||||
|
||||
.thang-name
|
||||
text-decoration: line-through
|
||||
|
||||
&.disabled
|
||||
@include opacity(0.25)
|
||||
|
|
|
@ -20,6 +20,7 @@ module.exports = class ThangListEntryView extends View
|
|||
'level-enable-controls': 'onEnableControls'
|
||||
'surface:frame-changed': "onFrameChanged"
|
||||
'level-set-letterbox': 'onSetLetterbox'
|
||||
'tome:thang-list-entry-popover-shown': 'onThangListEntryPopoverShown'
|
||||
|
||||
events:
|
||||
'click': 'onClick'
|
||||
|
@ -89,14 +90,22 @@ module.exports = class ThangListEntryView extends View
|
|||
|
||||
onMouseLeave: (e) ->
|
||||
return unless @controlsEnabled and @spells.length
|
||||
clearTimeout @hideSpellsTimeout if @hideSpellsTimeout
|
||||
@hideSpellsTimeout = _.delay @hideSpells, 100
|
||||
|
||||
onThangListEntryPopoverShown: (e) ->
|
||||
# I couldn't figure out how to get the mouseenter / mouseleave to always work, so this is a fallback
|
||||
# to hide our popover is another Thang's popover gets shown.
|
||||
return if e.entry is @
|
||||
@hideSpells()
|
||||
|
||||
showSpells: =>
|
||||
@sortSpells()
|
||||
@$el.data('bs.popover').options.content = @getSpellListHTML()
|
||||
@$el.popover('setContent').popover('show')
|
||||
@$el.parent().parent().parent().i18n()
|
||||
clearTimeout @hideSpellsTimeout if @hideSpellsTimeout
|
||||
@hideSpellsTimeout = null
|
||||
@popover = @$el.parent().parent().parent().find('.popover')
|
||||
@popover.off 'mouseenter mouseleave'
|
||||
@popover.mouseenter (e) => @onMouseEnter()
|
||||
|
@ -104,9 +113,11 @@ module.exports = class ThangListEntryView extends View
|
|||
thangID = @thang.id
|
||||
@popover.find('code').click (e) ->
|
||||
Backbone.Mediator.publish "level-select-sprite", thangID: thangID, spellName: $(@).data 'spell-name'
|
||||
Backbone.Mediator.publish 'tome:thang-list-entry-popover-shown', entry: @
|
||||
|
||||
hideSpells: =>
|
||||
@$el.popover('hide')
|
||||
@hideSpellsTimeout = null
|
||||
|
||||
getSpellListHTML: ->
|
||||
spellsPopoverTemplate {spells: @spells}
|
||||
|
|
|
@ -11,6 +11,7 @@ coco_path = os.getenv("COCO_DIR",os.path.join(current_directory,os.pardir))
|
|||
brunch_path = coco_path + os.sep + "node_modules" + os.sep + ".bin" + os.sep + "brunch"
|
||||
subprocess.Popen("ulimit -n 10000",shell=True)
|
||||
while True:
|
||||
print("Starting brunch. After the first compile, it'll keep running and watch for changes.")
|
||||
call(brunch_path + " w",shell=True,cwd=coco_path)
|
||||
print("Brunch crashed. Press control+C within 1 second to quit.")
|
||||
time.sleep(1)
|
||||
|
|
Loading…
Add table
Reference in a new issue