diff --git a/client/css/style.css b/client/css/style.css
index 29323197..790fdbf2 100644
--- a/client/css/style.css
+++ b/client/css/style.css
@@ -169,7 +169,6 @@ kbd {
#footer .icon,
#chat .count:before,
#settings #play:before,
-#form #cycle-nicks:before,
#form #submit:before,
#chat .invite .from:before,
#chat .join .from:before,
@@ -216,8 +215,6 @@ kbd {
#footer .help:before { content: "\f059"; /* http://fontawesome.io/icon/question/ */ }
#footer .sign-out:before { content: "\f011"; /* http://fontawesome.io/icon/power-off/ */ }
-#form #cycle-nicks:before { content: "\f007"; /* http://fontawesome.io/icon/user/ */ }
-
#form #submit:before { content: "\f1d8"; /* http://fontawesome.io/icon/paper-plane/ */ }
#chat .invite .from:before {
@@ -1454,22 +1451,16 @@ kbd {
align-self: center;
}
-#form #cycle-nicks,
#form #submit {
color: #9ca5b4;
font-size: 14px;
height: 32px;
transition: opacity .2s;
- width: 24px;
+ width: 32px;
-webkit-flex: 0 0 auto;
flex: 0 0 auto;
}
-#form #submit {
- margin-right: 4px;
-}
-
-#form #cycle-nicks:hover,
#form #submit:hover {
opacity: .6;
}
diff --git a/client/index.html b/client/index.html
index 5103e0ba..0feab905 100644
--- a/client/index.html
+++ b/client/index.html
@@ -70,9 +70,6 @@
-->
-
-
-
diff --git a/client/js/lounge.js b/client/js/lounge.js
index 327808dd..f134c16c 100644
--- a/client/js/lounge.js
+++ b/client/js/lounge.js
@@ -751,12 +751,6 @@ $(function() {
input.trigger("click").focus();
};
- // Cycle through nicks for the current word, just like hitting "Tab"
- $("#cycle-nicks").on("click", function() {
- input.triggerHandler($.Event("keydown.tabcomplete", {which: 9}));
- forceFocus();
- });
-
$("#form").on("submit", function(e) {
e.preventDefault();
forceFocus();