Welcome to mirror list, hosted at ThFree Co, Russian Federation.

element.js « polyfills « commons « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b13ceccf511be4d3f58697f4df321a95cdcfe935 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/**
 * Polyfill
 * @what Element.classList
 * @why In order to align browser features
 * @browsers Internet Explorer 11
 * @see https://caniuse.com/#feat=classlist
 */
import 'classlist-polyfill';

/**
 * Polyfill
 * @what Element.closest
 * @why In order to align browser features
 * @browsers Internet Explorer 11
 * @see https://caniuse.com/#feat=element-closest
 */
Element.prototype.closest =
  Element.prototype.closest ||
  function closest(selector, selectedElement = this) {
    if (!selectedElement) return null;
    return selectedElement.matches(selector)
      ? selectedElement
      : Element.prototype.closest(selector, selectedElement.parentElement);
  };

/**
 * Polyfill
 * @what Element.matches
 * @why In order to align browser features
 * @browsers Internet Explorer 11
 * @see https://caniuse.com/#feat=mdn-api_element_matches
 */
Element.prototype.matches =
  Element.prototype.matches ||
  Element.prototype.matchesSelector ||
  Element.prototype.mozMatchesSelector ||
  Element.prototype.msMatchesSelector ||
  Element.prototype.oMatchesSelector ||
  Element.prototype.webkitMatchesSelector ||
  function matches(selector) {
    const elms = (this.document || this.ownerDocument).querySelectorAll(selector);
    let i = elms.length - 1;
    while (i >= 0 && elms.item(i) !== this) {
      i -= 1;
    }
    return i > -1;
  };

/**
 * Polyfill
 * @what ChildNode.remove, Element.remove, CharacterData.remove, DocumentType.remove
 * @why In order to align browser features
 * @browsers Internet Explorer 11
 * @see https://caniuse.com/#feat=childnode-remove
 *
 * From the polyfill on MDN, https://developer.mozilla.org/en-US/docs/Web/API/ChildNode/remove#Polyfill
 */
(arr => {
  arr.forEach(item => {
    if (Object.prototype.hasOwnProperty.call(item, 'remove')) {
      return;
    }
    Object.defineProperty(item, 'remove', {
      configurable: true,
      enumerable: true,
      writable: true,
      value: function remove() {
        if (this.parentNode !== null) {
          this.parentNode.removeChild(this);
        }
      },
    });
  });
})([Element.prototype, CharacterData.prototype, DocumentType.prototype]);