fixed
parent
03da3ad832
commit
00bf4f3d42
14
src/utils.js
14
src/utils.js
|
@ -90,9 +90,17 @@ export const unbind = function(dom, type, fn = noop, phase = false) {
|
||||||
export const clickOutside = function(dom, fn = noop) {
|
export const clickOutside = function(dom, fn = noop) {
|
||||||
return bind(document, 'mousedown', ev => {
|
return bind(document, 'mousedown', ev => {
|
||||||
if (ev) {
|
if (ev) {
|
||||||
var path = ev.path.concat()
|
if (ev.path) {
|
||||||
while (path.length > 3) {
|
var path = ev.path.concat()
|
||||||
if (path.shift() === dom) {
|
while (path.length > 3) {
|
||||||
|
if (path.shift() === dom) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
var target = ev.originalTarget || ev.target
|
||||||
|
console.log(target, typeof target, target.__proto__)
|
||||||
|
if (dom === target || dom.contains(target)) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue