Open wachunga opened 12 years ago
A long-standing "feature" in firefox: escape kills any network requests. See https://bugzilla.mozilla.org/show_bug.cgi?id=614304
May be possible for Ω to workaround it.
A possible work around:
window.addEventListener('keydown', function(e) { (e.keyCode == 27 && e.preventDefault()) })
Found here: https://github.com/sockjs/sockjs-client/issues/18#issuecomment-6218613
A long-standing "feature" in firefox: escape kills any network requests. See https://bugzilla.mozilla.org/show_bug.cgi?id=614304
May be possible for Ω to workaround it.