loleaflet/html/loleaflet.html.m4 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
New commits: commit 1756782927e565cf8cb08b044799499dcc0f2dda Author: Tor Lillqvist <[email protected]> AuthorDate: Fri Sep 4 10:37:48 2020 +0300 Commit: Andras Timar <[email protected]> CommitDate: Fri Sep 4 11:06:01 2020 +0200 Set brandProductName in the MOBILEAPP case (Already handled in master but was still missing here.) Change-Id: I6950c879d23323a3823a7e82da10533a9b3f0ba1 Reviewed-on: https://gerrit.libreoffice.org/c/online/+/102028 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Andras Timar <[email protected]> diff --git a/loleaflet/html/loleaflet.html.m4 b/loleaflet/html/loleaflet.html.m4 index 2a53e2603..96d02c53e 100644 --- a/loleaflet/html/loleaflet.html.m4 +++ b/loleaflet/html/loleaflet.html.m4 @@ -43,7 +43,9 @@ m4_ifelse(MOBILEAPP,[true], window.open = function (url, windowName, windowFeatures) { window.postMobileMessage('HYPERLINK ' + url); /* don't call the 'normal' window.open on mobile at all */ } - window.MobileAppName='MOBILEAPPNAME';], + window.MobileAppName='MOBILEAPPNAME'; + brandProductName='MOBILEAPPNAME'; + ], [ window.ThisIsAMobileApp = false;] ) m4_ifelse(IOSAPP,[true], _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
