X-Git-Url: https://jasonwoof.com/gitweb/?p=hexbog.git;a=blobdiff_plain;f=main.coffee;h=0f11b9e2afd4faebd8f82297865c2aedb42ba79d;hp=ca34b4e14f8ab7cc78ae7d086091724ad030ccee;hb=59ce729a6e40837f20c48923b85420f8531250ec;hpb=1c59224d852c179a8ca23d4ad0333dc0ae3598b7 diff --git a/main.coffee b/main.coffee index ca34b4e..0f11b9e 100644 --- a/main.coffee +++ b/main.coffee @@ -577,6 +577,14 @@ init_tabs = -> for t in ['instructions', 'definition', 'logtab', 'restart'] init_tab t +init_keybinding = -> + $(window).keydown (e) -> + switch e.keyCode + when 32, 10, 13 + activate_selection() + when 27 + unselect_all() + $log = undefined init_log = -> $log = $('#log') @@ -588,6 +596,7 @@ init_game = -> init_log() if $(window).height() >= 440 $('#centerer').css('margin-top', '25px') + init_keybinding() init_tabs() init_board() init_html_board()