@@ -134,16 +134,16 @@ export default {
134134 window .eventHub .$on (' key_shift_up' , this .handle_key_shift_up )
135135 window .eventHub .$on (' key_mod_down' , this .handle_key_mod_down )
136136 window .eventHub .$on (' key_mod_up' , this .handle_key_mod_up )
137- window .eventHub .$on (' key_mod+a_down' , this .handle_mod_a_down )
138- window .eventHub .$on (' key_mod+a_up' , this .handle_mod_a_up )
137+ window .eventHub .$on (' key_mod+a_down' , this .handle_key_mod_a_down )
138+ window .eventHub .$on (' key_mod+a_up' , this .handle_key_mod_a_up )
139139 },
140140 unlistenEvent () {
141141 window .eventHub .$off (' key_shift_down' , this .handle_key_shift_down )
142142 window .eventHub .$off (' key_shift_up' , this .handle_key_shift_up )
143143 window .eventHub .$off (' key_mod_down' , this .handle_key_mod_down )
144144 window .eventHub .$off (' key_mod_up' , this .handle_key_mod_up )
145- window .eventHub .$off (' key_mod+a_down' , this .handle_mod_a_down )
146- window .eventHub .$off (' key_mod+a_up' , this .handle_mod_a_up )
145+ window .eventHub .$off (' key_mod+a_down' , this .handle_key_mod_a_down )
146+ window .eventHub .$off (' key_mod+a_up' , this .handle_key_mod_a_up )
147147 },
148148 handle_key_shift_down () {
149149 if (! this .keyEvent .isShiftDown ) this .keyEvent .isShiftDown = true
0 commit comments