bug fixed
This commit is contained in:
parent
e3c2826183
commit
cddab905c2
|
@ -491,10 +491,11 @@ var wide = {
|
||||||
|
|
||||||
// 点击隐藏弹出层
|
// 点击隐藏弹出层
|
||||||
$("body").bind("mouseup", function (event) {
|
$("body").bind("mouseup", function (event) {
|
||||||
//fix issue#200 右键文件树失效
|
// MAC 右键文件树失效
|
||||||
if (event.which === 3) {
|
if (event.which === 3) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
$(".frame").hide();
|
$(".frame").hide();
|
||||||
|
|
||||||
if (!($(event.target).closest(".frame").length === 1 || event.target.className === "frame")) {
|
if (!($(event.target).closest(".frame").length === 1 || event.target.className === "frame")) {
|
||||||
|
|
Loading…
Reference in New Issue