debian-mirror-gitlab/spec/frontend/helpers/dom_shims/size_properties.js
2020-04-08 14:13:33 +05:30

20 lines
436 B
JavaScript

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');
},
});