Cleaned up PC8080 cross-browser full-screen support (matches PCx86 now)

This commit is contained in:
Jeff Parsons 2017-08-03 08:42:29 -07:00 committed by Jeff Parsons
commit 13b0c23b0a
19 changed files with 500 additions and 524 deletions

View file

@ -2121,7 +2121,7 @@ class Web {
if (sEvent in obj) return sName;
} else {
if (!sName) {
sName = sProp[0].toLowerCase();
sName = sProp[0];
} else {
sName += sProp[0].toUpperCase();
}

View file

@ -2349,7 +2349,7 @@ class Web {
if (sEvent in obj) return sName;
} else {
if (!sName) {
sName = sProp[0].toLowerCase();
sName = sProp[0];
} else {
sName += sProp[0].toUpperCase();
}