Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/js/vendor/element-closest.js

Issue 29624561: Issue 6104 - Minified code in help center repository (Closed) Base URL: https://hg.adblockplus.org/help.eyeo.com
Patch Set: Created Nov. 29, 2017, 2:25 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/js/vendor/element-closest.js
===================================================================
new file mode 100644
--- /dev/null
+++ b/src/js/vendor/element-closest.js
@@ -0,0 +1,33 @@
+/*! @source https://github.com/jonathantneal/closest/blob/master/element-closest.js */
+
+(function (ElementProto) {
+ if (typeof ElementProto.matches !== 'function') {
+ ElementProto.matches = ElementProto.msMatchesSelector || ElementProto.mozMatchesSelector || ElementProto.webkitMatchesSelector || function matches(selector) {
+ var element = this;
+ var elements = (element.document || element.ownerDocument).querySelectorAll(selector);
+ var index = 0;
+
+ while (elements[index] && elements[index] !== element) {
+ ++index;
+ }
+
+ return Boolean(elements[index]);
+ };
+ }
+
+ if (typeof ElementProto.closest !== 'function') {
+ ElementProto.closest = function closest(selector) {
+ var element = this;
+
+ while (element && element.nodeType === 1) {
+ if (element.matches(selector)) {
+ return element;
+ }
+
+ element = element.parentNode;
+ }
+
+ return null;
+ };
+ }
+})(window.Element.prototype);
« gulpfile.js ('K') | « src/js/vendor/classList.js ('k') | src/js/vendor/html5shiv.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld