From 8a5c49c58592fafc938b6830a94f9cb89bc2a3a0 Mon Sep 17 00:00:00 2001 From: Joshua Horton Date: Wed, 2 Apr 2025 13:45:09 +0700 Subject: [PATCH] change(web): keyman-page-trailer -> kmw-page-trailer in order to match common prefix --- web/src/app/browser/src/context/pageIntegrationHandlers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/app/browser/src/context/pageIntegrationHandlers.ts b/web/src/app/browser/src/context/pageIntegrationHandlers.ts index 4e4bca2c9f..056a0ee91d 100644 --- a/web/src/app/browser/src/context/pageIntegrationHandlers.ts +++ b/web/src/app/browser/src/context/pageIntegrationHandlers.ts @@ -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);