mirror of
https://github.com/9001/copyparty.git
synced 2025-08-18 09:22:31 -06:00
v1.9.23
This commit is contained in:
parent
a4a112c0ee
commit
a7cef91b8b
|
@ -1,6 +1,6 @@
|
||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
|
|
||||||
VERSION = (1, 9, 22)
|
VERSION = (1, 9, 23)
|
||||||
CODENAME = "prometheable"
|
CODENAME = "prometheable"
|
||||||
BUILD_DT = (2023, 12, 1)
|
BUILD_DT = (2023, 12, 1)
|
||||||
|
|
||||||
|
|
|
@ -933,8 +933,10 @@ var set_lno = (function () {
|
||||||
var keydown = function (ev) {
|
var keydown = function (ev) {
|
||||||
if (!ev && window.event) {
|
if (!ev && window.event) {
|
||||||
ev = window.event;
|
ev = window.event;
|
||||||
toast.warn(10, 'hello from fallback code ;_;\ncheck console trace');
|
if (localStorage.dev_fbw == 1) {
|
||||||
console.error('using window.event');
|
toast.warn(10, 'hello from fallback code ;_;\ncheck console trace');
|
||||||
|
console.error('using window.event');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
var kc = ev.code || ev.keyCode || ev.which,
|
var kc = ev.code || ev.keyCode || ev.which,
|
||||||
editing = document.activeElement == dom_src;
|
editing = document.activeElement == dom_src;
|
||||||
|
|
|
@ -279,8 +279,10 @@ function anymod(e, shift_ok) {
|
||||||
function ev(e) {
|
function ev(e) {
|
||||||
if (!e && window.event) {
|
if (!e && window.event) {
|
||||||
e = window.event;
|
e = window.event;
|
||||||
toast.warn(10, 'hello from fallback code ;_;\ncheck console trace');
|
if (localStorage.dev_fbw == 1) {
|
||||||
console.error('using window.event');
|
toast.warn(10, 'hello from fallback code ;_;\ncheck console trace');
|
||||||
|
console.error('using window.event');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (!e)
|
if (!e)
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue