mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-02 16:21:01 -04:00
fullscreen on keyboard shortcut
This commit is contained in:
parent
a377e6c05d
commit
5db634d6a8
2 changed files with 5 additions and 0 deletions
app/views/play/level/tome
|
@ -13,6 +13,7 @@ module.exports = class SpellListTabEntryView extends SpellListEntryView
|
|||
'tome:spell-changed': 'onSpellChanged'
|
||||
'god:new-world-created': 'onNewWorld'
|
||||
'tome:spell-changed-language': 'onSpellChangedLanguage'
|
||||
'tome:fullscreen-view': 'onFullscreenClick'
|
||||
|
||||
events:
|
||||
'click .spell-list-button': 'onDropdownClick'
|
||||
|
|
|
@ -167,6 +167,10 @@ module.exports = class SpellView extends CocoView
|
|||
bindKey: {win: 'Ctrl-L', mac: 'Command-L'}
|
||||
passEvent: true
|
||||
exec: -> # just prevent default ACE go-to-line alert
|
||||
addCommand
|
||||
name: 'open-fullscreen-editor'
|
||||
bindKey: {win: 'Alt-Shift-F', mac: 'Ctrl-Shift-F'}
|
||||
exec: -> Backbone.Mediator.publish 'tome:fullscreen-view'
|
||||
|
||||
fillACE: ->
|
||||
@ace.setValue @spell.source
|
||||
|
|
Loading…
Add table
Reference in a new issue