mirror of
https://codeberg.org/kbruen/kai.infotren.git
synced 2025-02-23 09:39:38 +02:00
8 lines
198 B
JavaScript
8 lines
198 B
JavaScript
window.addEventListener('load', function (e) {
|
|
this.document.body.addEventListener('keydown', function (e) {
|
|
if (e.key == 'Backspace') {
|
|
e.preventDefault()
|
|
window.history.back()
|
|
}
|
|
})
|
|
})
|