change(web): keyman-page-trailer -> kmw-page-trailer in order to match common prefix

This commit is contained in:
Joshua Horton 2025-04-02 13:45:09 +07:00
parent cd322340df
commit 8a5c49c585

View file

@ -57,7 +57,7 @@ export class PageIntegrationHandlers {
// Add a blank DIV to the bottom of the page to allow the bottom of the page to be shown
const dTrailer = this.mobilePageTrailer = document.createElement('div');
const ds=dTrailer.style;
dTrailer.className = 'keyman-page-trailer';
dTrailer.className = 'kmw-page-trailer';
ds.width='100%';
ds.height=(screen.width/2)+'px'; // ... interesting choice, but okay.
document.body.appendChild(dTrailer);