Bugfix
This commit is contained in:
parent
7c3cf140d8
commit
30ea34ffd3
@ -17,7 +17,9 @@ h2 {
|
||||
.user {
|
||||
color: #f00;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
}
|
||||
.user:hover {
|
||||
color: #999;
|
||||
}
|
||||
#wrap,
|
||||
#viewport {
|
||||
|
@ -39,7 +39,6 @@
|
||||
<input type="checkbox" value="nick"/>
|
||||
<input type="checkbox" value="quit"/>
|
||||
<input type="checkbox" value="mode"/>
|
||||
<input type="checkbox" value="kick"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -215,9 +215,17 @@ $(function() {
|
||||
});
|
||||
});
|
||||
|
||||
chat.on("mousedown", ".user", function(e) {
|
||||
return false;
|
||||
});
|
||||
|
||||
chat.on("dblclick", ".user", function() {
|
||||
var link = $(this);
|
||||
var id = parseInt(link.closest(".window").attr("id").replace("window-", ""));
|
||||
var name = link.text().trim();
|
||||
if (name == "-!-" || name.indexOf(".") != -1) {
|
||||
return;
|
||||
}
|
||||
socket.emit("input", {
|
||||
id: id,
|
||||
text: "/whois " + link.text().trim(),
|
||||
|
@ -11,7 +11,7 @@
|
||||
(function($) {
|
||||
$.fn.tabComplete = function(list, options) {
|
||||
var settings = $.extend({
|
||||
appendSpace: false,
|
||||
after: '',
|
||||
caseSensitive: false,
|
||||
}, options);
|
||||
|
||||
@ -56,11 +56,10 @@
|
||||
}
|
||||
|
||||
if (match.length) {
|
||||
last = match[i];
|
||||
text.push(match[i]);
|
||||
self.val(text.join(' ') + settings.after);
|
||||
}
|
||||
|
||||
text.push(last);
|
||||
self.val(text.join(' ') + (settings.appendSpace ? ' ' : ''));
|
||||
return false;
|
||||
});
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user