diff options
author | Lauri Ojansivu <x@xet7.org> | 2019-03-21 20:27:21 +0200 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2019-03-21 20:27:21 +0200 |
commit | 2969161afbe60a1aa2e7da6cedc3ab48941faf3e (patch) | |
tree | ff882416a8577cb94fec575d5a79d3a9d639e40c /client/lib | |
parent | a6213d4a6f06d91ac63678ead73a6e3d7028adef (diff) | |
download | wekan-2969161afbe60a1aa2e7da6cedc3ab48941faf3e.tar.gz wekan-2969161afbe60a1aa2e7da6cedc3ab48941faf3e.tar.bz2 wekan-2969161afbe60a1aa2e7da6cedc3ab48941faf3e.zip |
- More whitelabeling.
Thanks to xet7 !
Diffstat (limited to 'client/lib')
-rw-r--r-- | client/lib/popup.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/lib/popup.js b/client/lib/popup.js index 5b640f50..9abe48aa 100644 --- a/client/lib/popup.js +++ b/client/lib/popup.js @@ -184,7 +184,7 @@ window.Popup = new class { // positives. const title = TAPi18n.__(translationKey); // when popup showed as full of small screen, we need a default header to clearly see [X] button - const defaultTitle = Utils.isMiniScreen() ? 'Wekan' : false; + const defaultTitle = Utils.isMiniScreen() ? '' : false; return title !== translationKey ? title : defaultTitle; }; } |