mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 00:28:31 -05:00
18 lines
611 B
CoffeeScript
18 lines
611 B
CoffeeScript
|
View = require 'views/kinds/ModalView'
|
||
|
template = require 'templates/play/level/modal/keyboard_shortcuts'
|
||
|
|
||
|
module.exports = class KeyboardShortcutsModal extends View
|
||
|
id: 'keyboard-shortcuts-modal'
|
||
|
template: template
|
||
|
|
||
|
getRenderData: ->
|
||
|
c = super()
|
||
|
c.ctrl = if @isMac() then '⌘' else '^'
|
||
|
c.ctrlName = if @isMac() then 'Cmd' else 'Ctrl'
|
||
|
c.alt = if @isMac() then '⌥' else 'alt'
|
||
|
c.altName = if @isMac() then 'Opt' else 'Alt'
|
||
|
c.enter = $.i18n.t 'keyboard_shortcuts.enter'
|
||
|
c.space = $.i18n.t 'keyboard_shortcuts.space'
|
||
|
c.escapeKey = $.i18n.t 'keyboard_shortcuts.escape'
|
||
|
c
|