mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 09:02:15 -06:00
ie11 support
This commit is contained in:
parent
4e7dd75266
commit
083f6572f7
|
@ -1781,6 +1781,7 @@ html.light #u2err.err {
|
|||
display: none;
|
||||
}
|
||||
#u2etas.o .o {
|
||||
display: inherit;
|
||||
display: unset;
|
||||
}
|
||||
#u2etaw {
|
||||
|
|
|
@ -79,7 +79,8 @@ html {
|
|||
}
|
||||
#toast.vis {
|
||||
right: 1.3em;
|
||||
transform: unset;
|
||||
transform: inherit;
|
||||
transform: initial;
|
||||
}
|
||||
#toast.vis #toastc {
|
||||
left: -2em;
|
||||
|
|
|
@ -30,7 +30,10 @@ catch (ex) {
|
|||
try {
|
||||
up2k = up2k_init(false);
|
||||
}
|
||||
catch (ex) { }
|
||||
catch (ex) {
|
||||
console.log('up2k init failed:', ex);
|
||||
toast.err(10, 'could not initialze up2k\n\n' + basenames(ex));
|
||||
}
|
||||
}
|
||||
treectl.onscroll();
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ try {
|
|||
catch (ex) {
|
||||
if (console.stdlog)
|
||||
console.log = console.stdlog;
|
||||
console.log(ex);
|
||||
console.log('console capture failed', ex);
|
||||
}
|
||||
var crashed = false, ignexd = {};
|
||||
function vis_exh(msg, url, lineNo, columnNo, error) {
|
||||
|
|
Loading…
Reference in a new issue