Add the user menu in the login and register pages

This commit is contained in:
yflory
2017-05-15 18:21:11 +02:00
parent dc2cdb7c08
commit 7ee6864ea4
4 changed files with 18 additions and 0 deletions

View File

@@ -13,6 +13,14 @@ define([
$sel.find('button').addClass('btn').addClass('btn-secondary');
$sel.show();
// User admin menu
var $userMenu = $('#user-menu');
var userMenuCfg = {
$initBlock: $userMenu
};
var $userAdmin = Cryptpad.createUserAdminMenu(userMenuCfg);
$userAdmin.find('button').addClass('btn').addClass('btn-secondary');
$(window).click(function () {
$('.cryptpad-dropdown').hide();
});