diff options
author | Erik Johnston <erik@matrix.org> | 2014-09-05 20:39:57 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-09-05 20:39:57 +0100 |
commit | 1c7bb34ffd564dca9f0b761a75f7cda348fdefeb (patch) | |
tree | 1e30e9277e212b288a5a1f30dcb953e7d947ba40 /webclient/settings/settings.html | |
parent | Empty string is not a valid JSON object, so don't return them in HTTP responses. (diff) | |
parent | BF: tab completion did not work with commands. $scope.input contained only th... (diff) | |
download | synapse-1c7bb34ffd564dca9f0b761a75f7cda348fdefeb.tar.xz |
Merge branch 'develop' of github.com:matrix-org/synapse into develop
Diffstat (limited to 'webclient/settings/settings.html')
-rw-r--r-- | webclient/settings/settings.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/webclient/settings/settings.html b/webclient/settings/settings.html index b7fd5dfb50..924812e7ae 100644 --- a/webclient/settings/settings.html +++ b/webclient/settings/settings.html @@ -23,14 +23,14 @@ </div> <br/> - <h3 style="display: none; ">Linked emails</h3> - <div class="section" style="display: none; "> + <h3>Linked emails</h3> + <div class="section"> <form> <input size="40" ng-model="linkedEmails.linkNewEmail" ng-enter="linkEmail(linkedEmails.linkNewEmail)" /> <button ng-disabled="!linkedEmails.linkNewEmail" ng-click="linkEmail(linkedEmails.linkNewEmail)"> Link Email </button> - {{ emailFeedback }} + {{ emailFeedback }} </form> <form ng-hide="!linkedEmails.emailBeingAuthed"> Enter validation token for {{ linkedEmails.emailBeingAuthed }}: @@ -81,7 +81,7 @@ <ul> <li>/nick <display_name>: change your display name</li> <li>/me <action>: send the action you are doing. /me will be replaced by your display name</li> - <li>/kick <user_id>: kick the user</li> + <li>/kick <user_id> [<reason>]: kick the user</li> <li>/ban <user_id> [<reason>]: ban the user</li> <li>/unban <user_id>: unban the user</li> <li>/op <user_id> <power_level>: set user power level</li> |