forked from mauricius/vue-draggable-resizable
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b3f5499
commit 2003311
Showing
2 changed files
with
58 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
export function isFunction(func) { | ||
return typeof func === "function" || Object.prototype.toString.call(func) === "[object Function]"; | ||
} | ||
|
||
export function matchesSelectorToParentElements(el, selector, baseNode) { | ||
let node = el; | ||
|
||
const matchesSelectorFunc = [ | ||
"matches", | ||
"webkitMatchesSelector", | ||
"mozMatchesSelector", | ||
"msMatchesSelector", | ||
"oMatchesSelector" | ||
].find(func => isFunction(node[func])); | ||
|
||
if (!isFunction(node[matchesSelectorFunc])) { | ||
return false; | ||
} | ||
|
||
do { | ||
if (node[matchesSelectorFunc](selector)) { | ||
return true; | ||
} | ||
if (node === baseNode) { | ||
return false; | ||
} | ||
node = node.parentNode; | ||
} while (node); | ||
|
||
return false; | ||
} | ||
|
||
export function addEvent(el, event, handler) { | ||
if (!el) { | ||
return false; | ||
} | ||
if (el.attachEvent) { | ||
el.attachEvent("on" + event, handler); | ||
} else if (el.addEventListener) { | ||
el.addEventListener(event, handler, true); | ||
} else { | ||
el["on" + event] = handler; | ||
} | ||
} | ||
|
||
export function removeEvent(el, event, handler) { | ||
if (!el) { | ||
return false; | ||
} | ||
if (el.detachEvent) { | ||
el.detachEvent("on" + event, handler); | ||
} else if (el.removeEventListener) { | ||
el.removeEventListener(event, handler, true); | ||
} else { | ||
el["on" + event] = null; | ||
} | ||
} |