diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2017-01-24 07:47:14 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2017-04-25 20:47:17 +0200 |
commit | d091793ceb1ab2a60133608e844e1d83a5de19f2 (patch) | |
tree | 12c4c5863c5ede094a78c534e03d6718823abb04 /core/templates | |
parent | db94b5d4af711f6e18aac0c9d4b0357a3b9123d1 (diff) | |
download | nextcloud-server-d091793ceb1ab2a60133608e844e1d83a5de19f2.tar.gz nextcloud-server-d091793ceb1ab2a60133608e844e1d83a5de19f2.zip |
Contacts menu
* load list of contacts from the server
* show last message of each contact
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/layout.user.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 91b7eb3490b..426ed4b1125 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -118,6 +118,10 @@ autocomplete="off" tabindex="5"> <button class="icon-close-white" type="reset"></button> </form> + <div id="contactsmenu"> + <div class="icon-contacts menutoggle"></div> + <div class="menu"></div> + </div> <div id="settings"> <div id="expand" tabindex="6" role="link" class="menutoggle"> <div class="avatardiv<?php if ($_['userAvatarSet']) { print_unescaped(' avatardiv-shown'); } else { print_unescaped('" style="display: none'); } ?>"> @@ -161,5 +165,6 @@ <?php print_unescaped($_['content']); ?> </div> </div> + </body> </html> |