[Libreoffice-commits] online.git: loleaflet/src

Tor Lillqvist (via logerrit) logerrit at kemper.freedesktop.org
Mon Jul 6 09:42:57 UTC 2020


 loleaflet/src/map/Map.js |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 24a0c7c3dccb5005f5d2f0ee02a88a989870a922
Author:     Tor Lillqvist <tml at collabora.com>
AuthorDate: Mon Jul 6 11:59:27 2020 +0300
Commit:     Tor Lillqvist <tml at collabora.com>
CommitDate: Mon Jul 6 11:42:38 2020 +0200

    Return early in L.Map.showBusy() in the iOS app, too
    
    Change-Id: If4d76601ed618a2e52f3dd1a116d03835c2342e7
    Reviewed-on: https://gerrit.libreoffice.org/c/online/+/98194
    Tested-by: Jenkins
    Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice at gmail.com>
    Reviewed-by: Tor Lillqvist <tml at collabora.com>

diff --git a/loleaflet/src/map/Map.js b/loleaflet/src/map/Map.js
index 0cd8f9282..b02638aaf 100644
--- a/loleaflet/src/map/Map.js
+++ b/loleaflet/src/map/Map.js
@@ -445,7 +445,7 @@ L.Map = L.Evented.extend({
 	},
 
 	showBusy: function(label, bar) {
-		if (window.ThisIsTheAndroidApp)
+		if (window.ThisIsTheAndroidApp || window.ThisIsTheiOSApp)
 			return;
 
 		// If document is already loaded, ask the toolbar widget to show busy


More information about the Libreoffice-commits mailing list