summaryrefslogtreecommitdiffstats
path: root/client/components/main/editor.js
diff options
context:
space:
mode:
authorSam X. Chen <sam.xi.chen@gmail.com>2019-08-15 14:23:14 -0400
committerSam X. Chen <sam.xi.chen@gmail.com>2019-08-15 14:23:14 -0400
commit7d52ae16d526602e8a01c6bf8157396cb1c7afe8 (patch)
treeba9adee897b02bca004d78114ac69d4d03602efc /client/components/main/editor.js
parent7198e6b66eaf622fb8378d928bd8a85df8da7505 (diff)
downloadwekan-7d52ae16d526602e8a01c6bf8157396cb1c7afe8.tar.gz
wekan-7d52ae16d526602e8a01c6bf8157396cb1c7afe8.tar.bz2
wekan-7d52ae16d526602e8a01c6bf8157396cb1c7afe8.zip
Bugfix: 2621 Summmernote is too wide on mobile screen
Diffstat (limited to 'client/components/main/editor.js')
-rwxr-xr-xclient/components/main/editor.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/main/editor.js b/client/components/main/editor.js
index 82bda0a3..91403086 100755
--- a/client/components/main/editor.js
+++ b/client/components/main/editor.js
@@ -180,7 +180,7 @@ Template.editor.onRendered(() => {
fBtn.on('click', function() {
const $this = $(this),
isActive = $this.hasClass('active');
- $('.minicards').toggle(!isActive); // mini card is still showing when editor is in fullscreen mode, we hide here manually
+ $('.minicards,#header-quick-access').toggle(!isActive); // mini card is still showing when editor is in fullscreen mode, we hide here manually
});
}
},