in themes/kube/static/js/kube.js [1410:1432]
close: function(e)
{
if (!this.isOpened())
{
return;
}
if (e)
{
if (this.shouldNotBeClosed(e.target))
{
return;
}
e.preventDefault();
}
this.utils.enableBodyScroll();
this.callback('close');
this.toggleCaretClose();
this.$target.animation(this.opts.animationClose, $.proxy(this.onClosed, this));
},