We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42d6456 commit fccd00eCopy full SHA for fccd00e
1 file changed
src/input/keyboard/KeyboardPlugin.js
@@ -744,10 +744,6 @@ var KeyboardPlugin = new Class({
744
if (KeyMap[code])
745
{
746
this.emit(Events.KEY_DOWN + KeyMap[code], event);
747
-
748
- // Deprecated, kept in for compatibility with 3.15
749
- // To be removed by 3.20.
750
- this.emit('keydown_' + KeyMap[code], event);
751
}
752
753
if (!event.cancelled)
@@ -769,10 +765,6 @@ var KeyboardPlugin = new Class({
769
765
770
766
771
767
this.emit(Events.KEY_UP + KeyMap[code], event);
772
773
774
775
- this.emit('keyup_' + KeyMap[code], event);
776
768
777
778
0 commit comments