JSFiddle - React, Tailwind, and code Playground

by vineshhpatel

JavaScript

var YmsKeyboard = new Class({
   Extends: Keyboard,
   Implements: [Options],
   initialize: function(options){
      this.setOptions(options);
   }
});

var ymKey = new YmsKeyboard();
ymKey.addEvent("keydown:enter",function(e){
    alert(e);
    Keyboard.stop(e);
});