ie11 support

This commit is contained in:
ed 2021-10-29 01:04:09 +02:00
parent 4e7dd75266
commit 083f6572f7
4 changed files with 8 additions and 3 deletions

View file

@ -1781,6 +1781,7 @@ html.light #u2err.err {
display: none; display: none;
} }
#u2etas.o .o { #u2etas.o .o {
display: inherit;
display: unset; display: unset;
} }
#u2etaw { #u2etaw {

View file

@ -79,7 +79,8 @@ html {
} }
#toast.vis { #toast.vis {
right: 1.3em; right: 1.3em;
transform: unset; transform: inherit;
transform: initial;
} }
#toast.vis #toastc { #toast.vis #toastc {
left: -2em; left: -2em;

View file

@ -30,7 +30,10 @@ catch (ex) {
try { try {
up2k = up2k_init(false); 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(); treectl.onscroll();

View file

@ -71,7 +71,7 @@ try {
catch (ex) { catch (ex) {
if (console.stdlog) if (console.stdlog)
console.log = console.stdlog; console.log = console.stdlog;
console.log(ex); console.log('console capture failed', ex);
} }
var crashed = false, ignexd = {}; var crashed = false, ignexd = {};
function vis_exh(msg, url, lineNo, columnNo, error) { function vis_exh(msg, url, lineNo, columnNo, error) {