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

size_properties.js « dom_shims « __helpers__ « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fbb919868b1ca090eb17a95959f450a459a24566 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const convertFromStyle = (style) => {
  if (style.match(/[0-9](px|rem)/g)) {
    return Number(style.replace(/[^0-9]/g, ''));
  }

  return 0;
};

Object.defineProperty(global.HTMLElement.prototype, 'offsetWidth', {
  get() {
    return convertFromStyle(this.style.width || '0px');
  },
});

Object.defineProperty(global.HTMLElement.prototype, 'offsetHeight', {
  get() {
    return convertFromStyle(this.style.height || '0px');
  },
});