Skip to content

Commit fccd00e

Browse files
committed
Remove deprecated events
1 parent 42d6456 commit fccd00e

1 file changed

Lines changed: 0 additions & 8 deletions

File tree

src/input/keyboard/KeyboardPlugin.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -744,10 +744,6 @@ var KeyboardPlugin = new Class({
744744
if (KeyMap[code])
745745
{
746746
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);
751747
}
752748

753749
if (!event.cancelled)
@@ -769,10 +765,6 @@ var KeyboardPlugin = new Class({
769765
if (KeyMap[code])
770766
{
771767
this.emit(Events.KEY_UP + KeyMap[code], event);
772-
773-
// Deprecated, kept in for compatibility with 3.15
774-
// To be removed by 3.20.
775-
this.emit('keyup_' + KeyMap[code], event);
776768
}
777769

778770
if (!event.cancelled)

0 commit comments

Comments
 (0)