Better window handling when closing
This commit is contained in:
parent
7e0b11ebf2
commit
0757450859
@ -128,9 +128,23 @@ $(function() {
|
||||
break;
|
||||
|
||||
case "part":
|
||||
$("#channel-" + data.id)
|
||||
.add("#window-" + data.id)
|
||||
.remove();
|
||||
var chan = $("#channel-" + data.id).add("#window-" + data.id).remove();
|
||||
if (!chan.hasClass("active")) {
|
||||
break;
|
||||
}
|
||||
|
||||
var next = null;
|
||||
var z = 0;
|
||||
$("#main .window").each(function() {
|
||||
var index = parseInt($(this).css("zIndex"));
|
||||
if (index > z) {
|
||||
z = index;
|
||||
next = this;
|
||||
}
|
||||
});
|
||||
if (typeof next !== "undefined") {
|
||||
$("#channel-" + $(next).data("id")).trigger("click");
|
||||
}
|
||||
break;
|
||||
|
||||
case "users":
|
||||
|
Loading…
Reference in New Issue
Block a user