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

Szymon Kłos (via logerrit) logerrit at kemper.freedesktop.org
Wed Oct 16 17:31:50 UTC 2019


 loleaflet/src/control/Control.MobileWizard.js |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit bc897471c8394bd9f5479adccaa2359f224ae883
Author:     Szymon Kłos <szymon.klos at collabora.com>
AuthorDate: Wed Oct 16 19:31:19 2019 +0200
Commit:     Szymon Kłos <szymon.klos at collabora.com>
CommitDate: Wed Oct 16 19:31:28 2019 +0200

    jsdialogs: add menuwizard class for hamburger menu
    
    Change-Id: I3c7a8906d3c2bed8df1c2a49077f7e35b6fb5ce4

diff --git a/loleaflet/src/control/Control.MobileWizard.js b/loleaflet/src/control/Control.MobileWizard.js
index 285bad6b3..d194870ef 100644
--- a/loleaflet/src/control/Control.MobileWizard.js
+++ b/loleaflet/src/control/Control.MobileWizard.js
@@ -30,6 +30,7 @@ L.Control.MobileWizard = L.Control.extend({
 		$('#mobile-wizard-titlebar').show();
 		$('#mobile-wizard-titlebar').css('top', '0px');
 		$('#mobile-wizard-content').css('top', '48px');
+		$('#mobile-wizard').removeClass('menuwizard');
 		this._isTabMode = false;
 	},
 
@@ -156,6 +157,7 @@ L.Control.MobileWizard = L.Control.extend({
 
 			if (data.id === 'menubar') {
 				$('#mobile-wizard').height('100%');
+				$('#mobile-wizard').addClass('menuwizard');
 				if (this.map .getDocType() === 'spreadsheet')
 					$('#mobile-wizard').css('top', $('#spreadsheet-row-column-frame').css('top'));
 				else


More information about the Libreoffice-commits mailing list