From 4485719b8f34c96cdd0c5f6e25c2bc0eb0a3c5a3 Mon Sep 17 00:00:00 2001 From: Jaifroid Date: Sat, 4 Mar 2023 18:48:34 +0000 Subject: [PATCH] Change message order --- www/js/app.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/www/js/app.js b/www/js/app.js index c878647a..2dfe922b 100644 --- a/www/js/app.js +++ b/www/js/app.js @@ -1450,8 +1450,9 @@ define(['jquery', 'zimArchiveLoader', 'uiUtil', 'util', 'utf8', 'cache', 'images params.lockDisplayOrientation = event.target.value || ''; settingsStore.setItem('lockDisplayOrientation', params.lockDisplayOrientation, Infinity); if (rtn === 'click') { - uiUtil.systemAlert('

Please click the    button top-right to enter full-screen mode.

' + (!params.PWAInstalled && - /iOS/.test(params.appType) ?'

In Safari on iOS, consider adding this app to your homescreen (Share --> Add to Home), which will give a better experience than full-screen mode.

' : '') + uiUtil.systemAlert((!params.PWAInstalled && /iOS/.test(params.appType) ? + '

In Safari on iOS, consider adding this app to your homescreen (Share --> Add to Home), which will give a better experience than full-screen mode.

' : '') + + '

Please click the    button top-right to enter full-screen mode.

' ); } }