[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-4' - loleaflet/src

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Fri May 3 15:45:47 UTC 2019


 loleaflet/src/map/Map.js |    8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

New commits:
commit b999c6fe6d080131f96dec34b11075164ae1d9e1
Author:     Ashod Nakashian <ashod.nakashian at collabora.co.uk>
AuthorDate: Thu May 2 23:28:04 2019 -0400
Commit:     Jan Holesovsky <kendy at collabora.com>
CommitDate: Fri May 3 17:44:57 2019 +0200

    leaflet: Enable sidebar on writer and calc, but not yet in impress
    
    Does not actually show the sidebar yet...
    
    Change-Id: Iadddba04bbdb96159e84ffd1498a0845b32e1590

diff --git a/loleaflet/src/map/Map.js b/loleaflet/src/map/Map.js
index d63d43b3a..9771e38d2 100644
--- a/loleaflet/src/map/Map.js
+++ b/loleaflet/src/map/Map.js
@@ -231,17 +231,15 @@ L.Map = L.Evented.extend({
 
 			// Show sidebar.
 			if (this._docLayer && !window.mode.isMobile() && !window.mode.isTablet() &&
-				(this._docLayer._docType === 'presentation' || this._docType === 'drawing')) {
+				(this._docLayer._docType === 'spreadsheet' || this._docLayer._docType === 'text')) {
 				// Let the first page finish loading then load the sidebar.
 				var map = this;
 				setTimeout(function () {
                     // This triggers all sidebar decks, so they would
                     // be loaded and show rather quickly on first use.
                     // Also, triggers sidebar window creation in the client.
-					map._socket.sendMessage('uno .uno:MasterSlidesPanel');
-					map._socket.sendMessage('uno .uno:CustomAnimation');
-					map._socket.sendMessage('uno .uno:SlideChangeWindow');
-					map._socket.sendMessage('uno .uno:ModifyPage');
+					map._socket.sendMessage('uno .uno:ViewSidebarStyles');
+					map._socket.sendMessage('uno .uno:Sidebar');
 				}, 200);
 			}
 		}, this);


More information about the Libreoffice-commits mailing list