diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-05-01 18:04:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-01 18:04:51 +0200 |
commit | 4a05ca46d3f949803c82c8b9b28982b1095ac47e (patch) | |
tree | 621b9b66647baefe53108e4de4507ea324dc336b /core | |
parent | dba55f950a21802052698baa63713c2693078aa7 (diff) | |
parent | 7015eb9fe5f69196196db6ac77c9ac2a922da763 (diff) | |
download | nextcloud-server-4a05ca46d3f949803c82c8b9b28982b1095ac47e.tar.gz nextcloud-server-4a05ca46d3f949803c82c8b9b28982b1095ac47e.zip |
Merge pull request #4598 from nextcloud/menu-flashing
Prevent flashing of apps and user menu on page load
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/layout.user.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 426ed4b1125..978534b869c 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -85,7 +85,7 @@ </ul> <nav role="navigation"> - <div id="navigation"> + <div id="navigation" style="display: none;"> <div id="apps"> <ul> <?php foreach($_['navigation'] as $entry): ?> @@ -134,7 +134,7 @@ </div> <div id="expandDisplayName" class="icon-settings-white"></div> </div> - <div id="expanddiv"> + <div id="expanddiv" style="display:none;"> <ul> <?php foreach($_['settingsnavigation'] as $entry):?> <li> |