numbEnter should work now
This commit is contained in:
@ -65,7 +65,7 @@
|
||||
<script>
|
||||
const input = document.getElementById('input');
|
||||
input.addEventListener('keydown', function(event) {
|
||||
if (event.code == 'Enter'){
|
||||
if (event.keyCode === 13){
|
||||
convert_input();
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user