mirror of https://github.com/zulip/zulip.git
17 lines
526 B
JavaScript
17 lines
526 B
JavaScript
$(function () {
|
|
$('.portico-header li.logout').on('click', function () {
|
|
$('#logout_form').submit();
|
|
return false;
|
|
});
|
|
|
|
$("body").click(function (e) {
|
|
var $this = $(e.target);
|
|
|
|
if ($this.closest(".dropdown .dropdown-pill").length > 0 && !$(".dropdown").hasClass("show")) {
|
|
$(".dropdown").addClass("show");
|
|
} else if (!$this.is(".dropdown ul") && $this.closest(".dropdown ul").length === 0) {
|
|
$(".dropdown").removeClass("show");
|
|
}
|
|
});
|
|
});
|